-
Notifications
You must be signed in to change notification settings - Fork 6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add fromEntries on HashMap and LinkedHashMap
Closes #34818 Change-Id: I77b117c16169a5c5bd5655e851256930a2ea5a28 Reviewed-on: https://dart-review.googlesource.com/c/81188 Commit-Queue: Nate Bosch <[email protected]> Reviewed-by: Lasse R.H. Nielsen <[email protected]>
- Loading branch information
1 parent
4f2a4e6
commit 03eafc0
Showing
5 changed files
with
78 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file | ||
// for details. All rights reserved. Use of this source code is governed by a | ||
// BSD-style license that can be found in the LICENSE file. | ||
|
||
import 'dart:collection'; | ||
|
||
import 'package:expect/expect.dart'; | ||
|
||
main() { | ||
runTests(<K, V>(entries) => Map<K, V>.fromEntries(entries)); | ||
runTests(<K, V>(entries) => HashMap<K, V>.fromEntries(entries)); | ||
runTests(<K, V>(entries) => LinkedHashMap<K, V>.fromEntries(entries)); | ||
} | ||
|
||
void runTests(Map<K, V> Function<K, V>(Iterable<MapEntry<K, V>>) ctor) { | ||
fromEntriesTest(ctor); | ||
emptyIterableTest(ctor); | ||
equalElementsTest(ctor); | ||
} | ||
|
||
void fromEntriesTest(Map<K, V> Function<K, V>(Iterable<MapEntry<K, V>>) ctor) { | ||
var map = ctor([MapEntry(1, "one"), MapEntry(2, "two")]); | ||
Expect.equals(2, map.length); | ||
Expect.equals(2, map.keys.length); | ||
Expect.equals(2, map.values.length); | ||
Expect.equals("one", map[1]); | ||
Expect.equals("two", map[2]); | ||
} | ||
|
||
void emptyIterableTest( | ||
Map<K, V> Function<K, V>(Iterable<MapEntry<K, V>>) ctor) { | ||
var map = ctor([]); | ||
Expect.equals(0, map.length); | ||
Expect.equals(0, map.keys.length); | ||
Expect.equals(0, map.values.length); | ||
} | ||
|
||
void equalElementsTest( | ||
Map<K, V> Function<K, V>(Iterable<MapEntry<K, V>>) ctor) { | ||
var map = | ||
ctor([MapEntry(1, "one"), MapEntry(2, "two"), MapEntry(2, "other")]); | ||
Expect.equals(2, map.length); | ||
Expect.equals(2, map.keys.length); | ||
Expect.equals(2, map.values.length); | ||
Expect.equals("one", map[1]); | ||
Expect.equals("other", map[2]); | ||
} |