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

Side by Side Diff: tests/corelib_2/list_fixed_test.dart

Issue 2994543002: Migrated test block 13 to Dart 2.0. (Closed)
Patch Set: Address Bob's nits Created 3 years, 4 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
« no previous file with comments | « tests/corelib_2/list_first_test.dart ('k') | tests/corelib_2/list_for_each_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) 2012, the Dart project authors. Please see the AUTHORS file 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 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:expect/expect.dart"; 5 import "package:expect/expect.dart";
6 6
7 main() { 7 main() {
8 var a; 8 var a;
9 9
10 a = new List(42); 10 a = new List(42);
11 Expect.equals(42, a.length); 11 Expect.equals(42, a.length);
12 Expect.throws(() => a.add(499), (e) => e is UnsupportedError); 12 Expect.throws(() => a.add(499), (e) => e is UnsupportedError);
13 Expect.equals(42, a.length); 13 Expect.equals(42, a.length);
14 for (int i = 0; i < 42; i++) { 14 for (int i = 0; i < 42; i++) {
15 Expect.equals(null, a[i]); 15 Expect.equals(null, a[i]);
16 } 16 }
17 Expect.throws(() => a.clear(), (e) => e is UnsupportedError); 17 Expect.throws(() => a.clear(), (e) => e is UnsupportedError);
18 Expect.equals(42, a.length); 18 Expect.equals(42, a.length);
19 19
20 a = new List.filled(42, -2); 20 a = new List.filled(42, -2);
21 Expect.equals(42, a.length); 21 Expect.equals(42, a.length);
22 Expect.throws(() => a.add(499), (e) => e is UnsupportedError); 22 Expect.throws(() => a.add(499), (e) => e is UnsupportedError);
23 Expect.equals(42, a.length); 23 Expect.equals(42, a.length);
24 for (int i = 0; i < 42; i++) { 24 for (int i = 0; i < 42; i++) {
25 Expect.equals(-2, a[i]); 25 Expect.equals(-2, a[i]);
26 } 26 }
27 Expect.throws(() => a.clear(), (e) => e is UnsupportedError); 27 Expect.throws(() => a.clear(), (e) => e is UnsupportedError);
28 Expect.equals(42, a.length); 28 Expect.equals(42, a.length);
29 } 29 }
OLDNEW
« no previous file with comments | « tests/corelib_2/list_first_test.dart ('k') | tests/corelib_2/list_for_each_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698