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.expect_async_args_test; |
| 6 |
| 7 import 'package:unittest/unittest.dart'; |
| 8 |
| 9 import 'package:metatest/metatest.dart'; |
| 10 |
| 11 void main() => initTests(_test); |
| 12 |
| 13 void _test(message) { |
| 14 initMetatest(message); |
| 15 |
| 16 expectTestResults('expect async args', () { |
| 17 var count = 0; |
| 18 List<int> _getArgs([a = 0, b = 0, c = 0, d = 0, e = 0, f = 0]) { |
| 19 count++; |
| 20 return [a, b, c, d, e, f]; |
| 21 } |
| 22 |
| 23 test('expect async args', () { |
| 24 expect(expectAsync(_getArgs)(), [0, 0, 0, 0, 0, 0]); |
| 25 expect(expectAsync(_getArgs)(5), [5, 0, 0, 0, 0, 0]); |
| 26 expect(expectAsync(_getArgs)(1, 2, 3, 4, 5, 6), [1, 2, 3, 4, 5, 6]); |
| 27 }); |
| 28 |
| 29 test('invoked with too many args', () { |
| 30 expectAsync(_getArgs)(1, 2, 3, 4, 5, 6, 7); |
| 31 }); |
| 32 |
| 33 test('created with too many args', () { |
| 34 expectAsync((a1, a2, a3, a4, a5, a6, a7) { |
| 35 count++; |
| 36 })(); |
| 37 }); |
| 38 |
| 39 test('verify count', () { |
| 40 expect(count, 3); |
| 41 }); |
| 42 }, [ |
| 43 {'description': 'expect async args', 'result': 'pass',}, |
| 44 {'description': 'invoked with too many args', 'result': 'error',}, |
| 45 {'description': 'created with too many args', 'result': 'error',}, |
| 46 {'description': 'verify count', 'result': 'pass',} |
| 47 ]); |
| 48 } |
OLD | NEW |