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

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

Issue 10244009: test rename overhaul: step 7 - corelib tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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 main() { 5 main() {
6 testWithConstMap(); 6 testWithConstMap();
7 testWithNonConstMap(); 7 testWithNonConstMap();
8 testWithLinkedMap(); 8 testWithLinkedMap();
9 } 9 }
10 10
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 var map = const { 'b': 1, 'a': 2, 'c': 3 }; 68 var map = const { 'b': 1, 'a': 2, 'c': 3 };
69 var otherMap = new LinkedHashMap.from(map); 69 var otherMap = new LinkedHashMap.from(map);
70 Expect.isTrue(otherMap is Map); 70 Expect.isTrue(otherMap is Map);
71 Expect.isTrue(otherMap is HashMap); 71 Expect.isTrue(otherMap is HashMap);
72 Expect.isTrue(otherMap is LinkedHashMap); 72 Expect.isTrue(otherMap is LinkedHashMap);
73 var i = 1; 73 var i = 1;
74 for (var val in map.getValues()) { 74 for (var val in map.getValues()) {
75 Expect.equals(i++, val); 75 Expect.equals(i++, val);
76 } 76 }
77 } 77 }
OLDNEW
« no previous file with comments | « tests/corelib/list_test.dart ('k') | tests/corelib/map_test.dart » ('j') | tools/test.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698