| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 library unittest.async_exception_with_future_test; | 5 library unittest.async_exception_with_future_test; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 | 8 |
| 9 import 'package:metatest/metatest.dart'; | 9 import 'package:metatest/metatest.dart'; |
| 10 import 'package:unittest/unittest.dart'; | 10 import 'package:unittest/unittest.dart'; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 // tearDown should still execute. | 28 // tearDown should still execute. |
| 29 new Future.sync(() { | 29 new Future.sync(() { |
| 30 throw "error!"; | 30 throw "error!"; |
| 31 }); | 31 }); |
| 32 return new Completer().future; | 32 return new Completer().future; |
| 33 }); | 33 }); |
| 34 | 34 |
| 35 test('follow up', () { | 35 test('follow up', () { |
| 36 expect(tearDownHappened, isTrue); | 36 expect(tearDownHappened, isTrue); |
| 37 }); | 37 }); |
| 38 | 38 }, [ |
| 39 }, [{ | 39 {'description': 'test', 'message': 'Caught error!', 'result': 'fail',}, |
| 40 'description': 'test', | 40 {'description': 'follow up', 'result': 'pass',} |
| 41 'message': 'Caught error!', | 41 ]); |
| 42 'result': 'fail', | |
| 43 }, { | |
| 44 'description': 'follow up', | |
| 45 'result': 'pass', | |
| 46 }]); | |
| 47 } | 42 } |
| OLD | NEW |