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

Side by Side Diff: tests/compiler/dart2js/link_test.dart

Issue 12743005: Revert "Remove Expect from core library." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload (first upload failed). Created 7 years, 9 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
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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";
6 import '../../../sdk/lib/_internal/compiler/implementation/util/util.dart'; 5 import '../../../sdk/lib/_internal/compiler/implementation/util/util.dart';
7 import '../../../sdk/lib/_internal/compiler/implementation/util/util_implementat ion.dart'; 6 import '../../../sdk/lib/_internal/compiler/implementation/util/util_implementat ion.dart';
8 7
9 main() { 8 main() {
10 test(const Link<Comparable>().prepend('three').prepend(2).prepend('one'), 9 test(const Link<Comparable>().prepend('three').prepend(2).prepend('one'),
11 ['one', 2, 'three']); 10 ['one', 2, 'three']);
12 test(const Link<Comparable>().prepend(3).prepend('two').prepend(1), 11 test(const Link<Comparable>().prepend(3).prepend('two').prepend(1),
13 [1, 'two', 3]); 12 [1, 'two', 3]);
14 test(const Link<String>().prepend('single'), ['single']); 13 test(const Link<String>().prepend('single'), ['single']);
15 test(const Link(), []); 14 test(const Link(), []);
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 Expect.isFalse(link.isEmpty); 53 Expect.isFalse(link.isEmpty);
55 Expect.equals(i, link.head); 54 Expect.equals(i, link.head);
56 } 55 }
57 Expect.isTrue(nonEmptyLink.skip(6).isEmpty); 56 Expect.isTrue(nonEmptyLink.skip(6).isEmpty);
58 Expect.throws(() => nonEmptyLink.skip(7), (e) => e is RangeError); 57 Expect.throws(() => nonEmptyLink.skip(7), (e) => e is RangeError);
59 58
60 var emptyLink = const Link(); 59 var emptyLink = const Link();
61 Expect.isTrue(emptyLink.skip(0).isEmpty); 60 Expect.isTrue(emptyLink.skip(0).isEmpty);
62 Expect.throws(() => emptyLink.skip(1), (e) => e is RangeError); 61 Expect.throws(() => emptyLink.skip(1), (e) => e is RangeError);
63 } 62 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/is_inference_test.dart ('k') | tests/compiler/dart2js/literal_list_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698