OLD | NEW |
(Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 import 'package:async_helper/async_helper.dart'; |
| 6 import "package:expect/expect.dart"; |
| 7 import 'dart:async'; |
| 8 import 'catch_errors.dart'; |
| 9 |
| 10 main() { |
| 11 asyncStart(); |
| 12 var completer = new Completer(); |
| 13 var errorHandlerOrDoneHasBeenExecuted = false; |
| 14 // Test that `catchErrors` doesn't shut down if a future is never completed. |
| 15 catchErrors(() { |
| 16 completer.future.then((x) { Expect.fail("should not be executed"); }); |
| 17 }).listen((x) { |
| 18 errorHandlerOrDoneHasBeenExecuted = true; |
| 19 Expect.fail("should not be executed (listen)"); |
| 20 }, |
| 21 onDone: () { |
| 22 errorHandlerOrDoneHasBeenExecuted = true; |
| 23 Expect.fail("should not be executed (onDone)"); |
| 24 }); |
| 25 Timer.run(() { |
| 26 Expect.isFalse(errorHandlerOrDoneHasBeenExecuted); |
| 27 asyncEnd(); |
| 28 }); |
| 29 } |
OLD | NEW |