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.middle_exception_test; | |
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 expectTestResults('late exception test', () { | |
18 test('testOne', () { | |
19 expect(true, isTrue); | |
20 }); | |
21 test('testTwo', () { | |
22 expect(true, isFalse); | |
23 }); | |
24 test('testThree', () { | |
25 var done = expectAsync(() {}); | |
26 new Future.sync(() { | |
27 expect(true, isTrue); | |
28 done(); | |
29 }); | |
30 }); | |
31 }, [{ | |
32 'result': 'pass' | |
33 }, { | |
34 'result': 'fail', | |
35 }, { | |
36 'result': 'pass' | |
37 }]); | |
38 } | |
OLD | NEW |