| 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 library unittest.async_setup_teardown; | 5 library unittest.async_setup_teardown; |
| 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 14 matching lines...) Expand all Loading... |
| 25 }); | 25 }); |
| 26 | 26 |
| 27 expectTestResults('good setup/bad teardown', () { | 27 expectTestResults('good setup/bad teardown', () { |
| 28 setUp(() { | 28 setUp(() { |
| 29 return new Future.value(0); | 29 return new Future.value(0); |
| 30 }); | 30 }); |
| 31 tearDown(() { | 31 tearDown(() { |
| 32 return new Future.error("Failed to complete tearDown"); | 32 return new Future.error("Failed to complete tearDown"); |
| 33 }); | 33 }); |
| 34 test('foo2', () {}); | 34 test('foo2', () {}); |
| 35 }, [{ | 35 }, [ |
| 36 'result': 'error', | 36 { |
| 37 'message': 'Teardown failed: Caught Failed to complete tearDown' | 37 'result': 'error', |
| 38 }]); | 38 'message': 'Teardown failed: Caught Failed to complete tearDown' |
| 39 } |
| 40 ]); |
| 39 | 41 |
| 40 expectTestResults('bad setup/good teardown', () { | 42 expectTestResults('bad setup/good teardown', () { |
| 41 setUp(() { | 43 setUp(() { |
| 42 return new Future.error("Failed to complete setUp"); | 44 return new Future.error("Failed to complete setUp"); |
| 43 }); | 45 }); |
| 44 tearDown(() { | 46 tearDown(() { |
| 45 return new Future.value(0); | 47 return new Future.value(0); |
| 46 }); | 48 }); |
| 47 test('foo3', () {}); | 49 test('foo3', () {}); |
| 48 }, [{ | 50 }, [ |
| 49 'result': 'error', | 51 { |
| 50 'message': 'Setup failed: Caught Failed to complete setUp' | 52 'result': 'error', |
| 51 }]); | 53 'message': 'Setup failed: Caught Failed to complete setUp' |
| 54 } |
| 55 ]); |
| 52 | 56 |
| 53 expectTestResults('bad setup/bad teardown', () { | 57 expectTestResults('bad setup/bad teardown', () { |
| 54 setUp(() { | 58 setUp(() { |
| 55 return new Future.error("Failed to complete setUp"); | 59 return new Future.error("Failed to complete setUp"); |
| 56 }); | 60 }); |
| 57 tearDown(() { | 61 tearDown(() { |
| 58 return new Future.error("Failed to complete tearDown"); | 62 return new Future.error("Failed to complete tearDown"); |
| 59 }); | 63 }); |
| 60 test('foo4', () {}); | 64 test('foo4', () {}); |
| 61 }, [{ | 65 }, [ |
| 62 'result': 'error', | 66 { |
| 63 'message': 'Setup failed: Caught Failed to complete setUp' | 67 'result': 'error', |
| 64 }]); | 68 'message': 'Setup failed: Caught Failed to complete setUp' |
| 69 } |
| 70 ]); |
| 65 } | 71 } |
| OLD | NEW |