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 main() { | 5 main() { |
6 var map1 = { "foo": 42, "bar": 499 }; | 6 var map1 = { "foo": 42, "bar": 499 }; |
7 var map2 = {}; | 7 var map2 = {}; |
8 var map3 = const { "foo": 42, "bar": 499 }; | 8 var map3 = const { "foo": 42, "bar": 499 }; |
9 var map4 = const {}; | 9 var map4 = const {}; |
10 var map5 = new Map<String, int>(); | 10 var map5 = new Map<String, int>(); |
(...skipping 18 matching lines...) Expand all Loading... |
29 Expect.equals(499, map3.values.last); | 29 Expect.equals(499, map3.values.last); |
30 | 30 |
31 Expect.isTrue(map4.values is Iterable); | 31 Expect.isTrue(map4.values is Iterable); |
32 Expect.isFalse(map4.values is List); | 32 Expect.isFalse(map4.values is List); |
33 Expect.equals(0, map4.values.length); | 33 Expect.equals(0, map4.values.length); |
34 | 34 |
35 Expect.isTrue(map5.values is Iterable); | 35 Expect.isTrue(map5.values is Iterable); |
36 Expect.isFalse(map5.values is List); | 36 Expect.isFalse(map5.values is List); |
37 Expect.equals(2, map5.values.length); | 37 Expect.equals(2, map5.values.length); |
38 Expect.isTrue(map5.values.first == 43 || map5.values.first == 500); | 38 Expect.isTrue(map5.values.first == 43 || map5.values.first == 500); |
39 Expect.isTrue(map5.values.last == 43 || map5.values.first == 500); | 39 Expect.isTrue(map5.values.last == 43 || map5.values.last == 500); |
40 Expect.notEquals(map5.values.first, map5.values.last); | 40 Expect.notEquals(map5.values.first, map5.values.last); |
41 | 41 |
42 Expect.isTrue(map6.values is Iterable); | 42 Expect.isTrue(map6.values is Iterable); |
43 Expect.isFalse(map6.values is List); | 43 Expect.isFalse(map6.values is List); |
44 Expect.equals(0, map6.values.length); | 44 Expect.equals(0, map6.values.length); |
45 } | 45 } |
OLD | NEW |