OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 // Tests equality utilities. | 5 // Tests equality utilities. |
6 | 6 |
7 import "dart:collection"; | 7 import "dart:collection"; |
8 import "package:collection_helpers/all.dart"; | 8 import "package:collection/collection.dart"; |
9 import "package:unittest/unittest.dart"; | 9 import "package:unittest/unittest.dart"; |
10 | 10 |
11 main() { | 11 main() { |
12 test("IterableEquality - List", () { | 12 test("IterableEquality - List", () { |
13 var l1 = [1, 2, 3, 4, 5]; | 13 var l1 = [1, 2, 3, 4, 5]; |
14 var l2 = [1.0, 2.0, 3.0, 4.0, 5.0]; | 14 var l2 = [1.0, 2.0, 3.0, 4.0, 5.0]; |
15 expect(const IterableEquality().equals(l1, l2), isTrue); | 15 expect(const IterableEquality().equals(l1, l2), isTrue); |
16 Equality iterId = const IterableEquality(const IdentityEquality()); | 16 Equality iterId = const IterableEquality(const IdentityEquality()); |
17 expect(iterId.equals(l1, l2), isFalse); /// 01: ok | 17 expect(iterId.equals(l1, l2), isFalse); /// 01: ok |
18 }); | 18 }); |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 expect(colleq.equals(map1a, map2a), | 155 expect(colleq.equals(map1a, map2a), |
156 isTrue); | 156 isTrue); |
157 expect(colleq.equals(map1b, map2b), | 157 expect(colleq.equals(map1b, map2b), |
158 isTrue); | 158 isTrue); |
159 expect(colleq.equals(l1, l2), | 159 expect(colleq.equals(l1, l2), |
160 isTrue); | 160 isTrue); |
161 expect(colleq.equals(s1, s2), | 161 expect(colleq.equals(s1, s2), |
162 isTrue); | 162 isTrue); |
163 }); | 163 }); |
164 } | 164 } |
OLD | NEW |