| 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 library unittest.async_setup_teardown; | |
| 6 | |
| 7 import 'dart:async'; | |
| 8 | |
| 9 import 'package:metatest/metatest.dart'; | |
| 10 import 'package:unittest/unittest.dart'; | |
| 11 | |
| 12 void main() => initTests(_test); | |
| 13 | |
| 14 void _test(message) { | |
| 15 initMetatest(message); | |
| 16 | |
| 17 expectTestsPass('good setup/good teardown', () { | |
| 18 setUp(() { | |
| 19 return new Future.value(0); | |
| 20 }); | |
| 21 tearDown(() { | |
| 22 return new Future.value(0); | |
| 23 }); | |
| 24 test('foo1', () {}); | |
| 25 }); | |
| 26 | |
| 27 expectTestResults('good setup/bad teardown', () { | |
| 28 setUp(() { | |
| 29 return new Future.value(0); | |
| 30 }); | |
| 31 tearDown(() { | |
| 32 return new Future.error("Failed to complete tearDown"); | |
| 33 }); | |
| 34 test('foo2', () {}); | |
| 35 }, [{ | |
| 36 'result': 'error', | |
| 37 'message': 'Teardown failed: Caught Failed to complete tearDown' | |
| 38 }]); | |
| 39 | |
| 40 expectTestResults('bad setup/good teardown', () { | |
| 41 setUp(() { | |
| 42 return new Future.error("Failed to complete setUp"); | |
| 43 }); | |
| 44 tearDown(() { | |
| 45 return new Future.value(0); | |
| 46 }); | |
| 47 test('foo3', () {}); | |
| 48 }, [{ | |
| 49 'result': 'error', | |
| 50 'message': 'Setup failed: Caught Failed to complete setUp' | |
| 51 }]); | |
| 52 | |
| 53 expectTestResults('bad setup/bad teardown', () { | |
| 54 setUp(() { | |
| 55 return new Future.error("Failed to complete setUp"); | |
| 56 }); | |
| 57 tearDown(() { | |
| 58 return new Future.error("Failed to complete tearDown"); | |
| 59 }); | |
| 60 test('foo4', () {}); | |
| 61 }, [{ | |
| 62 'result': 'error', | |
| 63 'message': 'Setup failed: Caught Failed to complete setUp' | |
| 64 }]); | |
| 65 } | |
| OLD | NEW |