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

Side by Side Diff: pkg/collection/test/equality_test.dart

Issue 113883002: Create associated packages for the dart:collection and dart:async libs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update SDK dependency to 1.0.0 Created 7 years 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) 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
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 }
OLDNEW
« no previous file with comments | « pkg/collection/test/algorithms_test.dart ('k') | pkg/collection/test/unmodifiable_collection_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698