OLD | NEW |
| (Empty) |
1 // Copyright (c) 2015, 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 import 'driver_test.dart' as driver; | |
6 import 'error_test.dart' as error; | |
7 import 'options_test.dart' as options; | |
8 import 'plugin_manager_test.dart' as plugin_manager; | |
9 import 'reporter_test.dart' as reporter; | |
10 import 'sdk_ext_test.dart' as sdk_ext; | |
11 import 'strong_mode_test.dart' as strong_mode; | |
12 import 'super_mixin_test.dart' as super_mixin; | |
13 | |
14 main() { | |
15 driver.main(); | |
16 error.main(); | |
17 options.main(); | |
18 plugin_manager.main(); | |
19 reporter.main(); | |
20 sdk_ext.main(); | |
21 strong_mode.main(); | |
22 super_mixin.main(); | |
23 } | |
OLD | NEW |