| 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.excess_callback_test; | 5 library unittest.excess_callback_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 13 matching lines...) Expand all Loading... |
| 24 _callback1(); | 24 _callback1(); |
| 25 _callback1(); | 25 _callback1(); |
| 26 _callback0(); | 26 _callback0(); |
| 27 }); | 27 }); |
| 28 new Future.sync(_callback2); | 28 new Future.sync(_callback2); |
| 29 }); | 29 }); |
| 30 | 30 |
| 31 test('verify count', () { | 31 test('verify count', () { |
| 32 expect(count, 1); | 32 expect(count, 1); |
| 33 }); | 33 }); |
| 34 }, [{ | 34 }, [ |
| 35 'description': 'test', | 35 { |
| 36 'message': 'Callback called more times than expected (1).', | 36 'description': 'test', |
| 37 'result': 'fail' | 37 'message': 'Callback called more times than expected (1).', |
| 38 }, { | 38 'result': 'fail' |
| 39 'description': 'verify count', | 39 }, |
| 40 'result': 'pass', | 40 {'description': 'verify count', 'result': 'pass',} |
| 41 }]); | 41 ]); |
| 42 } | 42 } |
| OLD | NEW |