Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Unified Diff: tests/corelib/map_from_iterable_test.dart

Issue 22859069: Reapply "Make Map constructors return LinkedHashMap." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Make map_values2_test know the order. Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/corelib/linked_hash_map_from_iterables_test.dart ('k') | tests/corelib/map_from_iterables_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib/map_from_iterable_test.dart
diff --git a/tests/corelib/map_from_iterable_test.dart b/tests/corelib/map_from_iterable_test.dart
index 4d0468db66a48f55f4dbe162491cb47d5b90355b..c5aa0c0faae72eea5f8fca19cd18b87bc53f4720 100644
--- a/tests/corelib/map_from_iterable_test.dart
+++ b/tests/corelib/map_from_iterable_test.dart
@@ -19,7 +19,7 @@ void defaultFunctionValuesTest() {
var map = new Map.fromIterable([1, 2, 3]);
Expect.isTrue(map is Map);
- Expect.isTrue(map is HashMap);
+ Expect.isTrue(map is LinkedHashMap);
Expect.equals(3, map.length);
Expect.equals(3, map.keys.length);
@@ -34,7 +34,7 @@ void defaultKeyFunctionTest() {
var map = new Map.fromIterable([1, 2, 3], value: (x) => x + 1);
Expect.isTrue(map is Map);
- Expect.isTrue(map is HashMap);
+ Expect.isTrue(map is LinkedHashMap);
Expect.equals(3, map.length);
Expect.equals(3, map.keys.length);
@@ -49,7 +49,7 @@ void defaultValueFunctionTest() {
var map = new Map.fromIterable([1, 2, 3], key: (x) => x + 1);
Expect.isTrue(map is Map);
- Expect.isTrue(map is HashMap);
+ Expect.isTrue(map is LinkedHashMap);
Expect.equals(3, map.length);
Expect.equals(3, map.keys.length);
@@ -64,9 +64,8 @@ void noDefaultValuesTest() {
var map = new Map.fromIterable([1, 2, 3],
key: (x) => x + 1, value: (x) => x - 1);
-
Expect.isTrue(map is Map);
- Expect.isTrue(map is HashMap);
+ Expect.isTrue(map is LinkedHashMap);
Expect.equals(3, map.length);
Expect.equals(3, map.keys.length);
@@ -80,7 +79,7 @@ void noDefaultValuesTest() {
void emptyIterableTest() {
var map = new Map.fromIterable([]);
Expect.isTrue(map is Map);
- Expect.isTrue(map is HashMap);
+ Expect.isTrue(map is LinkedHashMap);
Expect.equals(0, map.length);
Expect.equals(0, map.keys.length);
@@ -91,7 +90,7 @@ void equalElementsTest() {
var map = new Map.fromIterable([1, 2, 2], key: (x) => x + 1);
Expect.isTrue(map is Map);
- Expect.isTrue(map is HashMap);
+ Expect.isTrue(map is LinkedHashMap);
Expect.equals(2, map.length);
Expect.equals(2, map.keys.length);
« no previous file with comments | « tests/corelib/linked_hash_map_from_iterables_test.dart ('k') | tests/corelib/map_from_iterables_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698