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

Side by Side Diff: tests/corelib/linked_hash_map_from_iterable_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: Removed long line. 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
« no previous file with comments | « sdk/lib/core/map.dart ('k') | tests/corelib/linked_hash_map_from_iterables_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 defaultFunctionValuesTest(); 9 defaultFunctionValuesTest();
10 defaultKeyFunctionTest(); 10 defaultKeyFunctionTest();
11 defaultValueFunctionTest(); 11 defaultValueFunctionTest();
12 noDefaultValuesTest(); 12 noDefaultValuesTest();
13 emptyIterableTest(); 13 emptyIterableTest();
14 equalElementsTest(); 14 equalElementsTest();
15 genericTypeTest(); 15 genericTypeTest();
16 } 16 }
17 17
18 void defaultFunctionValuesTest() { 18 void defaultFunctionValuesTest() {
19 var map = new Map.fromIterable([1, 2, 3]); 19 var map = new LinkedHashMap.fromIterable([1, 2, 3]);
20 20
21 Expect.isTrue(map is Map); 21 Expect.isTrue(map is Map);
22 Expect.isTrue(map is HashMap); 22 Expect.isTrue(map is LinkedHashMap);
23 Expect.isFalse(map is HashMap);
23 24
24 Expect.equals(3, map.length); 25 Expect.equals(3, map.length);
25 Expect.equals(3, map.keys.length); 26 Expect.equals(3, map.keys.length);
26 Expect.equals(3, map.values.length); 27 Expect.equals(3, map.values.length);
27 28
28 Expect.equals(1, map[1]); 29 Expect.equals(1, map[1]);
29 Expect.equals(2, map[2]); 30 Expect.equals(2, map[2]);
30 Expect.equals(3, map[3]); 31 Expect.equals(3, map[3]);
31 } 32 }
32 33
33 void defaultKeyFunctionTest() { 34 void defaultKeyFunctionTest() {
34 var map = new Map.fromIterable([1, 2, 3], value: (x) => x + 1); 35 var map = new LinkedHashMap.fromIterable([1, 2, 3], value: (x) => x + 1);
35 36
36 Expect.isTrue(map is Map); 37 Expect.isTrue(map is Map);
37 Expect.isTrue(map is HashMap); 38 Expect.isTrue(map is LinkedHashMap);
39 Expect.isFalse(map is HashMap);
38 40
39 Expect.equals(3, map.length); 41 Expect.equals(3, map.length);
40 Expect.equals(3, map.keys.length); 42 Expect.equals(3, map.keys.length);
41 Expect.equals(3, map.values.length); 43 Expect.equals(3, map.values.length);
42 44
43 Expect.equals(2, map[1]); 45 Expect.equals(2, map[1]);
44 Expect.equals(3, map[2]); 46 Expect.equals(3, map[2]);
45 Expect.equals(4, map[3]); 47 Expect.equals(4, map[3]);
46 } 48 }
47 49
48 void defaultValueFunctionTest() { 50 void defaultValueFunctionTest() {
49 var map = new Map.fromIterable([1, 2, 3], key: (x) => x + 1); 51 var map = new LinkedHashMap.fromIterable([1, 2, 3], key: (x) => x + 1);
50 52
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(3, map.length); 57 Expect.equals(3, map.length);
55 Expect.equals(3, map.keys.length); 58 Expect.equals(3, map.keys.length);
56 Expect.equals(3, map.values.length); 59 Expect.equals(3, map.values.length);
57 60
58 Expect.equals(1, map[2]); 61 Expect.equals(1, map[2]);
59 Expect.equals(2, map[3]); 62 Expect.equals(2, map[3]);
60 Expect.equals(3, map[4]); 63 Expect.equals(3, map[4]);
61 } 64 }
62 65
63 void noDefaultValuesTest() { 66 void noDefaultValuesTest() {
64 var map = new Map.fromIterable([1, 2, 3], 67 var map = new LinkedHashMap.fromIterable([1, 2, 3],
65 key: (x) => x + 1, value: (x) => x - 1); 68 key: (x) => x + 1, value: (x) => x - 1);
66 69
67
68 Expect.isTrue(map is Map); 70 Expect.isTrue(map is Map);
69 Expect.isTrue(map is HashMap); 71 Expect.isTrue(map is LinkedHashMap);
72 Expect.isFalse(map is HashMap);
70 73
71 Expect.equals(3, map.length); 74 Expect.equals(3, map.length);
72 Expect.equals(3, map.keys.length); 75 Expect.equals(3, map.keys.length);
73 Expect.equals(3, map.values.length); 76 Expect.equals(3, map.values.length);
74 77
75 Expect.equals(0, map[2]); 78 Expect.equals(0, map[2]);
76 Expect.equals(1, map[3]); 79 Expect.equals(1, map[3]);
77 Expect.equals(2, map[4]); 80 Expect.equals(2, map[4]);
78 } 81 }
79 82
80 void emptyIterableTest() { 83 void emptyIterableTest() {
81 var map = new Map.fromIterable([]); 84 var map = new LinkedHashMap.fromIterable([]);
82 Expect.isTrue(map is Map); 85 Expect.isTrue(map is Map);
83 Expect.isTrue(map is HashMap); 86 Expect.isTrue(map is LinkedHashMap);
87 Expect.isFalse(map is HashMap);
84 88
85 Expect.equals(0, map.length); 89 Expect.equals(0, map.length);
86 Expect.equals(0, map.keys.length); 90 Expect.equals(0, map.keys.length);
87 Expect.equals(0, map.values.length); 91 Expect.equals(0, map.values.length);
88 } 92 }
89 93
90 void equalElementsTest() { 94 void equalElementsTest() {
91 var map = new Map.fromIterable([1, 2, 2], key: (x) => x + 1); 95 var map = new LinkedHashMap.fromIterable([1, 2, 2], key: (x) => x + 1);
92 96
93 Expect.isTrue(map is Map); 97 Expect.isTrue(map is Map);
94 Expect.isTrue(map is HashMap); 98 Expect.isTrue(map is LinkedHashMap);
99 Expect.isFalse(map is HashMap);
95 100
96 Expect.equals(2, map.length); 101 Expect.equals(2, map.length);
97 Expect.equals(2, map.keys.length); 102 Expect.equals(2, map.keys.length);
98 Expect.equals(2, map.values.length); 103 Expect.equals(2, map.values.length);
99 104
100 Expect.equals(1, map[2]); 105 Expect.equals(1, map[2]);
101 Expect.equals(2, map[3]); 106 Expect.equals(2, map[3]);
102 } 107 }
103 108
104 void genericTypeTest() { 109 void genericTypeTest() {
105 var map = new Map<int, String>.fromIterable([1, 2, 3], value: (x) => '$x'); 110 var map = new LinkedHashMap<int, String>.fromIterable([1, 2, 3], value: (x) => '$x');
106 Expect.isTrue(map is Map<int, String>); 111 Expect.isTrue(map is Map<int, String>);
112 Expect.isTrue(map is LinkedHashMap<int, String>);
107 113
108 // Make sure it is not just Map<dynamic, dynamic>. 114 // Make sure it is not just LinkedHashMap<dynamic, dynamic>.
109 Expect.isFalse(map is Map<String, dynamic>); 115 Expect.isFalse(map is LinkedHashMap<String, dynamic>);
110 Expect.isFalse(map is Map<dynamic, int>); 116 Expect.isFalse(map is LinkedHashMap<dynamic, int>);
111 } 117 }
112 118
OLDNEW
« no previous file with comments | « sdk/lib/core/map.dart ('k') | tests/corelib/linked_hash_map_from_iterables_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698