OLD | NEW |
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"; |
5 import '../../../sdk/lib/_internal/compiler/implementation/util/util.dart'; | 6 import '../../../sdk/lib/_internal/compiler/implementation/util/util.dart'; |
6 import '../../../sdk/lib/_internal/compiler/implementation/util/util_implementat
ion.dart'; | 7 import '../../../sdk/lib/_internal/compiler/implementation/util/util_implementat
ion.dart'; |
7 | 8 |
8 main() { | 9 main() { |
9 test(const Link<Comparable>().prepend('three').prepend(2).prepend('one'), | 10 test(const Link<Comparable>().prepend('three').prepend(2).prepend('one'), |
10 ['one', 2, 'three']); | 11 ['one', 2, 'three']); |
11 test(const Link<Comparable>().prepend(3).prepend('two').prepend(1), | 12 test(const Link<Comparable>().prepend(3).prepend('two').prepend(1), |
12 [1, 'two', 3]); | 13 [1, 'two', 3]); |
13 test(const Link<String>().prepend('single'), ['single']); | 14 test(const Link<String>().prepend('single'), ['single']); |
14 test(const Link(), []); | 15 test(const Link(), []); |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 Expect.isFalse(link.isEmpty); | 54 Expect.isFalse(link.isEmpty); |
54 Expect.equals(i, link.head); | 55 Expect.equals(i, link.head); |
55 } | 56 } |
56 Expect.isTrue(nonEmptyLink.skip(6).isEmpty); | 57 Expect.isTrue(nonEmptyLink.skip(6).isEmpty); |
57 Expect.throws(() => nonEmptyLink.skip(7), (e) => e is RangeError); | 58 Expect.throws(() => nonEmptyLink.skip(7), (e) => e is RangeError); |
58 | 59 |
59 var emptyLink = const Link(); | 60 var emptyLink = const Link(); |
60 Expect.isTrue(emptyLink.skip(0).isEmpty); | 61 Expect.isTrue(emptyLink.skip(0).isEmpty); |
61 Expect.throws(() => emptyLink.skip(1), (e) => e is RangeError); | 62 Expect.throws(() => emptyLink.skip(1), (e) => e is RangeError); |
62 } | 63 } |
OLD | NEW |