OLD | NEW |
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 // Test merging streams. | 5 // Test merging streams. |
6 library dart.test.stream_from_iterable; | 6 library dart.test.stream_from_iterable; |
7 | 7 |
| 8 import "package:expect/expect.dart"; |
8 import "dart:async"; | 9 import "dart:async"; |
9 import '../../../pkg/unittest/lib/unittest.dart'; | 10 import '../../../pkg/unittest/lib/unittest.dart'; |
10 import 'event_helper.dart'; | 11 import 'event_helper.dart'; |
11 | 12 |
12 class IterableTest<T> { | 13 class IterableTest<T> { |
13 static int counter = 0; | 14 static int counter = 0; |
14 Iterable<T> iterable; | 15 Iterable<T> iterable; |
15 IterableTest(this.iterable); | 16 IterableTest(this.iterable); |
16 void run() { | 17 void run() { |
17 test("stream from iterable ${counter++}", () { | 18 test("stream from iterable ${counter++}", () { |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 if (value == 20) { | 67 if (value == 20) { |
67 subscription.pause(new Future.delayed(duration, () {})); | 68 subscription.pause(new Future.delayed(duration, () {})); |
68 } | 69 } |
69 }, onDone: expectAsync0(() { | 70 }, onDone: expectAsync0(() { |
70 actual.close(); | 71 actual.close(); |
71 Events expected = new Events.fromIterable(iter); | 72 Events expected = new Events.fromIterable(iter); |
72 Expect.listEquals(expected.events, actual.events); | 73 Expect.listEquals(expected.events, actual.events); |
73 })); | 74 })); |
74 }); | 75 }); |
75 } | 76 } |
OLD | NEW |