Chromium Code Reviews

Side by Side Diff: pkg/collection/test/unmodifiable_collection_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.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « pkg/collection/test/equality_test.dart ('k') | pkg/collection/test/wrapper_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
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 import "package:collection_helpers/wrappers.dart"; 5 import "package:collection/wrappers.dart";
6 import "package:unittest/unittest.dart"; 6 import "package:unittest/unittest.dart";
7 7
8 // Test unmodifiable collection views. 8 // Test unmodifiable collection views.
9 // The collections should pass through the operations that are allowed, 9 // The collections should pass through the operations that are allowed,
10 // an throw on the ones that aren't without affecting the original. 10 // an throw on the ones that aren't without affecting the original.
11 11
12 main() { 12 main() {
13 List list = []; 13 List list = [];
14 testUnmodifiableList(list, new UnmodifiableListView(list), "empty"); 14 testUnmodifiableList(list, new UnmodifiableListView(list), "empty");
15 list = [42]; 15 list = [42];
(...skipping 604 matching lines...)
620 }); 620 });
621 621
622 testThrows("$name remove throws", () { 622 testThrows("$name remove throws", () {
623 wrapped.remove(0); 623 wrapped.remove(0);
624 }); 624 });
625 625
626 testThrows("$name clear throws", () { 626 testThrows("$name clear throws", () {
627 wrapped.clear(); 627 wrapped.clear();
628 }); 628 });
629 } 629 }
OLDNEW
« no previous file with comments | « pkg/collection/test/equality_test.dart ('k') | pkg/collection/test/wrapper_test.dart » ('j') | no next file with comments »

Powered by Google App Engine