OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | |
Mads Ager (google)
2011/11/08 14:58:21
Delete file, please.
| |
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("test_controller"); | |
6 | |
7 | |
8 #import("test_runner.dart"); | |
9 #import("../../../tests/standalone/test_config.dart"); | |
10 #import("../../../tests/corelib/test_config.dart"); | |
11 | |
12 main() { | |
13 var queue = new AsyncProcessQueue(); | |
14 new StandaloneTestSuite().getTests(queue.runTest); | |
15 new CorelibTestSuite().getTests(queue.runTest); | |
16 } | |
OLD | NEW |