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

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

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 | « tests/corelib/iterable_take_while_test.dart ('k') | tests/corelib/iterable_to_set_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
(Empty)
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
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.
4
5 main() {
6 List<int> list1 = <int>[1, 2, 3];
7 List<int> list2 = const <int>[4, 5];
8 List<String> list3 = <String>[];
9 Set<int> set1 = new Set<int>();
10 set1..add(11)
11 ..add(12)
12 ..add(13);
13 Set<String> set2 = new Set<String>();
14 set2..add("foo")
15 ..add("bar")
16 ..add("toto");
17 Set set3 = new Set();
18
19 var listCopy = list1.toList();
20 Expect.listEquals(list1, listCopy);
21 Expect.isTrue(listCopy is List<int>);
22 Expect.isFalse(listCopy is List<String>);
23 Expect.isFalse(identical(list1, listCopy));
24
25 listCopy = list2.toList();
26 Expect.listEquals(list2, listCopy);
27 Expect.isTrue(listCopy is List<int>);
28 Expect.isFalse(listCopy is List<String>);
29 Expect.isFalse(identical(list2, listCopy));
30
31 listCopy = list3.toList();
32 Expect.listEquals(list3, listCopy);
33 Expect.isTrue(listCopy is List<String>);
34 Expect.isFalse(listCopy is List<int>);
35 Expect.isFalse(identical(list3, listCopy));
36
37 listCopy = set1.toList();
38 Expect.equals(3, listCopy.length);
39 Expect.isTrue(listCopy.contains(11));
40 Expect.isTrue(listCopy.contains(12));
41 Expect.isTrue(listCopy.contains(13));
42 Expect.isTrue(listCopy is List<int>);
43 Expect.isFalse(listCopy is List<String>);
44
45 listCopy = set2.toList();
46 Expect.equals(3, listCopy.length);
47 Expect.isTrue(listCopy.contains("foo"));
48 Expect.isTrue(listCopy.contains("bar"));
49 Expect.isTrue(listCopy.contains("toto"));
50 Expect.isTrue(listCopy is List<String>);
51 Expect.isFalse(listCopy is List<int>);
52
53 listCopy = set3.toList();
54 Expect.isTrue(listCopy.isEmpty);
55 Expect.isTrue(listCopy is List<int>);
56 Expect.isTrue(listCopy is List<String>);
57 }
OLDNEW
« no previous file with comments | « tests/corelib/iterable_take_while_test.dart ('k') | tests/corelib/iterable_to_set_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698