OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 |
| 5 import "dart:async"; |
| 6 import "package:expect/expect.dart"; |
| 7 import "package:async_helper/async_helper.dart"; |
| 8 |
| 9 main() { |
| 10 asyncStart(); |
| 11 |
| 12 bool waitedForCancel = false; |
| 13 |
| 14 var controller = new StreamController( |
| 15 onCancel: () => new Future(() => waitedForCancel = true)); |
| 16 var sub = controller.stream.take(1).listen((x) { |
| 17 Expect.fail("onData should not be called"); |
| 18 }); |
| 19 var cancelFuture = sub.cancel(); |
| 20 Expect.isNotNull(cancelFuture); |
| 21 cancelFuture.then((_) { |
| 22 Expect.isTrue(waitedForCancel); |
| 23 asyncEnd(); |
| 24 }); |
| 25 } |
OLD | NEW |