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

Side by Side Diff: pkg/unittest/test/unittest_test.dart

Issue 10911318: Revert "Make unittest follow the new package layout." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « pkg/unittest/test/mock_test.dart ('k') | pkg/unittest/test_case.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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 // TODO(gram): 5 // TODO(gram):
6 // Unfortunately I can't seem to test anything that involves timeouts, e.g. 6 // Unfortunately I can't seem to test anything that involves timeouts, e.g.
7 // insufficient callbacks, because the timeout is controlled externally 7 // insufficient callbacks, because the timeout is controlled externally
8 // (test.dart?), and we would need to use a shorter timeout for the inner tests 8 // (test.dart?), and we would need to use a shorter timeout for the inner tests
9 // so the outer timeout doesn't fire. So I removed all such tests. 9 // so the outer timeout doesn't fire. So I removed all such tests.
10 // I'd like to revisit this at some point. 10 // I'd like to revisit this at some point.
11 11
12 #library('unittestTest'); 12 #library('unittestTest');
13 #import('dart:isolate'); 13 #import('dart:isolate');
14 #import('../../../pkg/unittest/lib/unittest.dart'); 14 #import('../../../pkg/unittest/unittest.dart');
15 15
16 var tests; // array of test names 16 var tests; // array of test names
17 var expected; // array of test expected results (from buildStatusString) 17 var expected; // array of test expected results (from buildStatusString)
18 var actual; // actual test results (from buildStatusString in config.onDone) 18 var actual; // actual test results (from buildStatusString in config.onDone)
19 var _testconfig; // test configuration to capture onDone 19 var _testconfig; // test configuration to capture onDone
20 20
21 _defer(void fn()) { 21 _defer(void fn()) {
22 // Exploit isolate ports as a platform-independent mechanism to queue a 22 // Exploit isolate ports as a platform-independent mechanism to queue a
23 // message at the end of the event loop. Stolen from unittest.dart. 23 // message at the end of the event loop. Stolen from unittest.dart.
24 final port = new ReceivePort(); 24 final port = new ReceivePort();
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 buildStatusString(1, 0, 0, tests[9], 10), 189 buildStatusString(1, 0, 0, tests[9], 10),
190 buildStatusString(0, 1, 0, tests[10], message: 'Caught error!'), 190 buildStatusString(0, 1, 0, tests[10], message: 'Caught error!'),
191 buildStatusString(1, 0, 1, 'testOne', message: 'Callback called after alread y being marked as done (1).:testTwo:') 191 buildStatusString(1, 0, 1, 'testOne', message: 'Callback called after alread y being marked as done (1).:testTwo:')
192 ]; 192 ];
193 193
194 actual = []; 194 actual = [];
195 195
196 nextTest(0); 196 nextTest(0);
197 } 197 }
198 198
OLDNEW
« no previous file with comments | « pkg/unittest/test/mock_test.dart ('k') | pkg/unittest/test_case.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698