OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 library test.analysis; | 4 library test.analysis; |
5 | 5 |
6 import 'package:unittest/unittest.dart'; | 6 import 'package:unittest/unittest.dart'; |
7 | 7 |
| 8 import '../utils.dart'; |
8 import 'get_errors_test.dart' as get_errors_test; | 9 import 'get_errors_test.dart' as get_errors_test; |
9 import 'get_hover_test.dart' as get_hover_test; | 10 import 'get_hover_test.dart' as get_hover_test; |
10 import 'get_navigation_test.dart' as get_navigation_test; | 11 import 'get_navigation_test.dart' as get_navigation_test; |
11 import 'notification_analyzedFiles_test.dart' | 12 import 'notification_analyzedFiles_test.dart' |
12 as notification_analyzedFiles_test; | 13 as notification_analyzedFiles_test; |
13 import 'notification_errors_test.dart' as notification_errors_test; | 14 import 'notification_errors_test.dart' as notification_errors_test; |
14 import 'notification_highlights_test.dart' as notification_highlights_test; | 15 import 'notification_highlights_test.dart' as notification_highlights_test; |
15 import 'notification_highlights_test2.dart' as notification_highlights_test2; | 16 import 'notification_highlights_test2.dart' as notification_highlights_test2; |
16 import 'notification_navigation_test.dart' as notification_navigation_test; | 17 import 'notification_navigation_test.dart' as notification_navigation_test; |
17 import 'notification_occurrences_test.dart' as notification_occurrences_test; | 18 import 'notification_occurrences_test.dart' as notification_occurrences_test; |
18 import 'notification_outline_test.dart' as notification_outline_test; | 19 import 'notification_outline_test.dart' as notification_outline_test; |
19 import 'notification_overrides_test.dart' as notification_overrides_test; | 20 import 'notification_overrides_test.dart' as notification_overrides_test; |
20 import 'update_content_test.dart' as update_content_test; | 21 import 'update_content_test.dart' as update_content_test; |
21 | 22 |
22 /** | 23 /** |
23 * Utility for manually running all tests. | 24 * Utility for manually running all tests. |
24 */ | 25 */ |
25 main() { | 26 main() { |
26 groupSep = ' | '; | 27 initializeTestEnvironment(); |
27 group('search', () { | 28 group('search', () { |
28 get_errors_test.main(); | 29 get_errors_test.main(); |
29 get_hover_test.main(); | 30 get_hover_test.main(); |
30 get_navigation_test.main(); | 31 get_navigation_test.main(); |
31 notification_analyzedFiles_test.main(); | 32 notification_analyzedFiles_test.main(); |
32 notification_errors_test.main(); | 33 notification_errors_test.main(); |
33 notification_highlights_test.main(); | 34 notification_highlights_test.main(); |
34 notification_highlights_test2.main(); | 35 notification_highlights_test2.main(); |
35 notification_navigation_test.main(); | 36 notification_navigation_test.main(); |
36 notification_occurrences_test.main(); | 37 notification_occurrences_test.main(); |
37 notification_outline_test.main(); | 38 notification_outline_test.main(); |
38 notification_overrides_test.main(); | 39 notification_overrides_test.main(); |
39 update_content_test.main(); | 40 update_content_test.main(); |
40 }); | 41 }); |
41 } | 42 } |
OLD | NEW |