| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import "package:expect/expect.dart"; | 5 import "package:expect/expect.dart"; |
| 6 import 'dart:collection'; | 6 import 'dart:collection'; |
| 7 | 7 |
| 8 main() { | 8 main() { |
| 9 positiveTest(); | 9 positiveTest(); |
| 10 emptyMapTest(); | 10 emptyMapTest(); |
| 11 fewerKeysIterableTest(); | 11 fewerKeysIterableTest(); |
| 12 fewerValuesIterableTest(); | 12 fewerValuesIterableTest(); |
| 13 equalElementsTest(); | 13 equalElementsTest(); |
| 14 genericTypeTest(); | 14 genericTypeTest(); |
| 15 } | 15 } |
| 16 | 16 |
| 17 void positiveTest() { | 17 void positiveTest() { |
| 18 var map = new Map.fromIterables([1, 2, 3], ["one", "two", "three"]); | 18 var map = new LinkedHashMap.fromIterables([1, 2, 3], ["one", "two", "three"]); |
| 19 Expect.isTrue(map is Map); | 19 Expect.isTrue(map is Map); |
| 20 Expect.isTrue(map is HashMap); | 20 Expect.isTrue(map is LinkedHashMap); |
| 21 Expect.isFalse(map is HashMap); |
| 21 | 22 |
| 22 Expect.equals(3, map.length); | 23 Expect.equals(3, map.length); |
| 23 Expect.equals(3, map.keys.length); | 24 Expect.equals(3, map.keys.length); |
| 24 Expect.equals(3, map.values.length); | 25 Expect.equals(3, map.values.length); |
| 25 | 26 |
| 26 Expect.equals("one", map[1]); | 27 Expect.equals("one", map[1]); |
| 27 Expect.equals("two", map[2]); | 28 Expect.equals("two", map[2]); |
| 28 Expect.equals("three", map[3]); | 29 Expect.equals("three", map[3]); |
| 29 } | 30 } |
| 30 | 31 |
| 31 void emptyMapTest() { | 32 void emptyMapTest() { |
| 32 var map = new Map.fromIterables([], []); | 33 var map = new LinkedHashMap.fromIterables([], []); |
| 33 Expect.isTrue(map is Map); | 34 Expect.isTrue(map is Map); |
| 34 Expect.isTrue(map is HashMap); | 35 Expect.isTrue(map is LinkedHashMap); |
| 36 Expect.isFalse(map is HashMap); |
| 35 | 37 |
| 36 Expect.equals(0, map.length); | 38 Expect.equals(0, map.length); |
| 37 Expect.equals(0, map.keys.length); | 39 Expect.equals(0, map.keys.length); |
| 38 Expect.equals(0, map.values.length); | 40 Expect.equals(0, map.values.length); |
| 39 } | 41 } |
| 40 | 42 |
| 41 void fewerValuesIterableTest() { | 43 void fewerValuesIterableTest() { |
| 42 Expect.throws(() => new Map.fromIterables([1,2], [0])); | 44 Expect.throws(() => new LinkedHashMap.fromIterables([1,2], [0])); |
| 43 } | 45 } |
| 44 | 46 |
| 45 void fewerKeysIterableTest() { | 47 void fewerKeysIterableTest() { |
| 46 Expect.throws(() => new Map.fromIterables([1], [0,2])); | 48 Expect.throws(() => new LinkedHashMap.fromIterables([1], [0,2])); |
| 47 } | 49 } |
| 48 | 50 |
| 49 void equalElementsTest() { | 51 void equalElementsTest() { |
| 50 var map = new Map.fromIterables([1, 2, 2], ["one", "two", "three"]); | 52 var map = new LinkedHashMap.fromIterables([1, 2, 2], ["one", "two", "three"]); |
| 51 Expect.isTrue(map is Map); | 53 Expect.isTrue(map is Map); |
| 52 Expect.isTrue(map is HashMap); | 54 Expect.isTrue(map is LinkedHashMap); |
| 55 Expect.isFalse(map is HashMap); |
| 53 | 56 |
| 54 Expect.equals(2, map.length); | 57 Expect.equals(2, map.length); |
| 55 Expect.equals(2, map.keys.length); | 58 Expect.equals(2, map.keys.length); |
| 56 Expect.equals(2, map.values.length); | 59 Expect.equals(2, map.values.length); |
| 57 | 60 |
| 58 Expect.equals("one", map[1]); | 61 Expect.equals("one", map[1]); |
| 59 Expect.equals("three", map[2]); | 62 Expect.equals("three", map[2]); |
| 60 } | 63 } |
| 61 | 64 |
| 62 | 65 |
| 63 void genericTypeTest() { | 66 void genericTypeTest() { |
| 64 var map = new Map<int, String>.fromIterables( | 67 var map = new LinkedHashMap<int, String>.fromIterables( |
| 65 [1, 2, 3], ["one", "two", "three"]); | 68 [1, 2, 3], ["one", "two", "three"]); |
| 66 Expect.isTrue(map is Map<int, String>); | 69 Expect.isTrue(map is Map<int, String>); |
| 70 Expect.isTrue(map is LinkedHashMap<int, String>); |
| 67 | 71 |
| 68 // Make sure it is not just Map<dynamic, dynamic>. | 72 // Make sure it is not just LinkedHashMap<dynamic, dynamic>. |
| 69 Expect.isFalse(map is Map<String, dynamic>); | 73 Expect.isFalse(map is LinkedHashMap<String, dynamic>); |
| 70 Expect.isFalse(map is Map<dynamic, int>); | 74 Expect.isFalse(map is LinkedHashMap<dynamic, int>); |
| 71 | 75 |
| 72 Expect.equals(3, map.length); | 76 Expect.equals(3, map.length); |
| 73 Expect.equals(3, map.keys.length); | 77 Expect.equals(3, map.keys.length); |
| 74 Expect.equals(3, map.values.length); | 78 Expect.equals(3, map.values.length); |
| 75 | 79 |
| 76 Expect.equals("one", map[1]); | 80 Expect.equals("one", map[1]); |
| 77 Expect.equals("two", map[2]); | 81 Expect.equals("two", map[2]); |
| 78 Expect.equals("three", map[3]); | 82 Expect.equals("three", map[3]); |
| 79 } | 83 } |
| OLD | NEW |