Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1116)

Side by Side Diff: packages/unittest/test/expect_async_args_test.dart

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « packages/unittest/test.dart ('k') | packages/unittest/test/pretty_print_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
11 void main() => initTests(_test); 11 void main() => initTests(_test);
12 12
13 void _test(message) { 13 void _test(message) {
14 initMetatest(message); 14 initMetatest(message);
15 15
16 expectTestResults('expect async args', () { 16 expectTestResults('expect async args', () {
17 var count = 0; 17 var count = 0;
18 List<int> _getArgs([a = 0, b = 0, c = 0, d = 0, e = 0, f = 0]) { 18 List<int> _getArgs([a = 0, b = 0, c = 0, d = 0, e = 0, f = 0]) {
19 count++; 19 count++;
20 return [a, b, c, d, e, f]; 20 return <int>[a, b, c, d, e, f];
21 } 21 }
22 22
23 test('expect async args', () { 23 test('expect async args', () {
24 expect(expectAsync(_getArgs)(), [0, 0, 0, 0, 0, 0]); 24 expect(expectAsync(_getArgs)(), [0, 0, 0, 0, 0, 0]);
25 expect(expectAsync(_getArgs)(5), [5, 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]); 26 expect(expectAsync(_getArgs)(1, 2, 3, 4, 5, 6), [1, 2, 3, 4, 5, 6]);
27 }); 27 });
28 28
29 test('invoked with too many args', () { 29 test('invoked with too many args', () {
30 expectAsync(_getArgs)(1, 2, 3, 4, 5, 6, 7); 30 expectAsync(_getArgs)(1, 2, 3, 4, 5, 6, 7);
31 }); 31 });
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', 'result': 'pass',}, 43 {'description': 'expect async args', 'result': 'pass',},
44 {'description': 'invoked with too many args', 'result': 'error',}, 44 {'description': 'invoked with too many args', 'result': 'error',},
45 {'description': 'created with too many args', 'result': 'error',}, 45 {'description': 'created with too many args', 'result': 'error',},
46 {'description': 'verify count', 'result': 'pass',} 46 {'description': 'verify count', 'result': 'pass',}
47 ]); 47 ]);
48 } 48 }
OLDNEW
« no previous file with comments | « packages/unittest/test.dart ('k') | packages/unittest/test/pretty_print_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698