| 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.expect_async_args_test; | 5 library unittest.expect_async_args_test; |
| 6 | 6 |
| 7 import 'package:unittest/unittest.dart'; | 7 import 'package:unittest/unittest.dart'; |
| 8 | 8 |
| 9 import 'package:metatest/metatest.dart'; | 9 import 'package:metatest/metatest.dart'; |
| 10 | 10 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 test('created with too many args', () { | 33 test('created with too many args', () { |
| 34 expectAsync((a1, a2, a3, a4, a5, a6, a7) { | 34 expectAsync((a1, a2, a3, a4, a5, a6, a7) { |
| 35 count++; | 35 count++; |
| 36 })(); | 36 })(); |
| 37 }); | 37 }); |
| 38 | 38 |
| 39 test('verify count', () { | 39 test('verify count', () { |
| 40 expect(count, 3); | 40 expect(count, 3); |
| 41 }); | 41 }); |
| 42 }, [{ | 42 }, [ |
| 43 'description': 'expect async args', | 43 {'description': 'expect async args', 'result': 'pass',}, |
| 44 'result': 'pass', | 44 {'description': 'invoked with too many args', 'result': 'error',}, |
| 45 }, { | 45 {'description': 'created with too many args', 'result': 'error',}, |
| 46 'description': 'invoked with too many args', | 46 {'description': 'verify count', 'result': 'pass',} |
| 47 'result': 'error', | 47 ]); |
| 48 }, { | |
| 49 'description': 'created with too many args', | |
| 50 'result': 'error', | |
| 51 }, { | |
| 52 'description': 'verify count', | |
| 53 'result': 'pass', | |
| 54 }]); | |
| 55 } | 48 } |
| OLD | NEW |