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; | |
5 | 4 |
6 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 5 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
7 | 6 |
8 import 'get_errors_test.dart' as get_errors_test; | 7 import 'get_errors_test.dart' as get_errors_test; |
9 import 'get_hover_test.dart' as get_hover_test; | 8 import 'get_hover_test.dart' as get_hover_test; |
10 import 'get_navigation_test.dart' as get_navigation_test; | 9 import 'get_navigation_test.dart' as get_navigation_test; |
11 import 'navigation_collector_test.dart' as navigation_collector_test; | 10 import 'navigation_collector_test.dart' as navigation_collector_test; |
12 import 'notification_analysis_options_test.dart' | 11 import 'notification_analysis_options_test.dart' |
13 as notification_analysis_options_test; | 12 as notification_analysis_options_test; |
14 import 'notification_analyzedFiles_test.dart' | 13 import 'notification_analyzedFiles_test.dart' |
(...skipping 27 matching lines...) Expand all Loading... |
42 notification_implemented_test.main(); | 41 notification_implemented_test.main(); |
43 notification_navigation_test.main(); | 42 notification_navigation_test.main(); |
44 notification_occurrences_test.main(); | 43 notification_occurrences_test.main(); |
45 notification_outline_test.main(); | 44 notification_outline_test.main(); |
46 notification_overrides_test.main(); | 45 notification_overrides_test.main(); |
47 reanalyze_test.main(); | 46 reanalyze_test.main(); |
48 set_priority_files_test.main(); | 47 set_priority_files_test.main(); |
49 update_content_test.main(); | 48 update_content_test.main(); |
50 }, name: 'analysis'); | 49 }, name: 'analysis'); |
51 } | 50 } |
OLD | NEW |