| 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.middle_exception_test; | 5 library unittest.middle_exception_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 10 matching lines...) Expand all Loading... |
| 21 test('testTwo', () { | 21 test('testTwo', () { |
| 22 expect(true, isFalse); | 22 expect(true, isFalse); |
| 23 }); | 23 }); |
| 24 test('testThree', () { | 24 test('testThree', () { |
| 25 var done = expectAsync(() {}); | 25 var done = expectAsync(() {}); |
| 26 new Future.sync(() { | 26 new Future.sync(() { |
| 27 expect(true, isTrue); | 27 expect(true, isTrue); |
| 28 done(); | 28 done(); |
| 29 }); | 29 }); |
| 30 }); | 30 }); |
| 31 }, [{ | 31 }, [{'result': 'pass'}, {'result': 'fail',}, {'result': 'pass'}]); |
| 32 'result': 'pass' | |
| 33 }, { | |
| 34 'result': 'fail', | |
| 35 }, { | |
| 36 'result': 'pass' | |
| 37 }]); | |
| 38 } | 32 } |
| OLD | NEW |