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

Side by Side Diff: tests/corelib/splay_tree_from_iterables_test.dart

Issue 18072004: Add fromIterable(s) constructors in SplayTreeMap and LinkedHashMap. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 SplayTreeMap.fromIterables([1, 2, 3], ["one", "two", "three"]);
19
19 Expect.isTrue(map is Map); 20 Expect.isTrue(map is Map);
20 Expect.isTrue(map is HashMap); 21 Expect.isTrue(map is SplayTreeMap);
22 Expect.isFalse(map is HashMap);
21 23
22 Expect.equals(3, map.length); 24 Expect.equals(3, map.length);
23 Expect.equals(3, map.keys.length); 25 Expect.equals(3, map.keys.length);
24 Expect.equals(3, map.values.length); 26 Expect.equals(3, map.values.length);
25 27
26 Expect.equals("one", map[1]); 28 Expect.equals("one", map[1]);
27 Expect.equals("two", map[2]); 29 Expect.equals("two", map[2]);
28 Expect.equals("three", map[3]); 30 Expect.equals("three", map[3]);
29 } 31 }
30 32
31 void emptyMapTest() { 33 void emptyMapTest() {
32 var map = new Map.fromIterables([], []); 34 var map = new SplayTreeMap.fromIterables([], []);
35
33 Expect.isTrue(map is Map); 36 Expect.isTrue(map is Map);
34 Expect.isTrue(map is HashMap); 37 Expect.isTrue(map is SplayTreeMap);
38 Expect.isFalse(map is HashMap);
35 39
36 Expect.equals(0, map.length); 40 Expect.equals(0, map.length);
37 Expect.equals(0, map.keys.length); 41 Expect.equals(0, map.keys.length);
38 Expect.equals(0, map.values.length); 42 Expect.equals(0, map.values.length);
39 } 43 }
40 44
41 void fewerValuesIterableTest() { 45 void fewerValuesIterableTest() {
42 Expect.throws(() => new Map.fromIterables([1,2], [0])); 46 Expect.throws(() => new SplayTreeMap.fromIterables([1,2], [0]));
43 } 47 }
44 48
45 void fewerKeysIterableTest() { 49 void fewerKeysIterableTest() {
46 Expect.throws(() => new Map.fromIterables([1], [0,2])); 50 Expect.throws(() => new SplayTreeMap.fromIterables([1], [0,2]));
47 } 51 }
48 52
49 void equalElementsTest() { 53 void equalElementsTest() {
50 var map = new Map.fromIterables([1, 2, 2], ["one", "two", "three"]); 54 var map = new SplayTreeMap.fromIterables([1, 2, 2], ["one", "two", "three"]);
55
51 Expect.isTrue(map is Map); 56 Expect.isTrue(map is Map);
52 Expect.isTrue(map is HashMap); 57 Expect.isTrue(map is SplayTreeMap);
58 Expect.isFalse(map is HashMap);
53 59
54 Expect.equals(2, map.length); 60 Expect.equals(2, map.length);
55 Expect.equals(2, map.keys.length); 61 Expect.equals(2, map.keys.length);
56 Expect.equals(2, map.values.length); 62 Expect.equals(2, map.values.length);
57 63
58 Expect.equals("one", map[1]); 64 Expect.equals("one", map[1]);
59 Expect.equals("three", map[2]); 65 Expect.equals("three", map[2]);
60 } 66 }
61 67
62 68
63 void genericTypeTest() { 69 void genericTypeTest() {
64 var map = new Map<int, String>.fromIterables( 70 var map = new SplayTreeMap<int, String>.fromIterables(
65 [1, 2, 3], ["one", "two", "three"]); 71 [1, 2, 3], ["one", "two", "three"]);
66 Expect.isTrue(map is Map<int, String>); 72 Expect.isTrue(map is Map<int, String>);
73 Expect.isTrue(map is SplayTreeMap<int, String>);
67 74
68 // Make sure it is not just Map<dynamic, dynamic>. 75 // Make sure it is not just SplayTreeMap<dynamic, dynamic>.
69 Expect.isFalse(map is Map<String, dynamic>); 76 Expect.isFalse(map is SplayTreeMap<String, dynamic>);
70 Expect.isFalse(map is Map<dynamic, int>); 77 Expect.isFalse(map is SplayTreeMap<dynamic, int>);
71 78
72 Expect.equals(3, map.length); 79 Expect.equals(3, map.length);
73 Expect.equals(3, map.keys.length); 80 Expect.equals(3, map.keys.length);
74 Expect.equals(3, map.values.length); 81 Expect.equals(3, map.values.length);
75 82
76 Expect.equals("one", map[1]); 83 Expect.equals("one", map[1]);
77 Expect.equals("two", map[2]); 84 Expect.equals("two", map[2]);
78 Expect.equals("three", map[3]); 85 Expect.equals("three", map[3]);
79 } 86 }
OLDNEW
« sdk/lib/collection/splay_tree.dart ('K') | « tests/corelib/splay_tree_from_iterable_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698