| 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 | 4 |
| 5 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 5 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 6 | 6 |
| 7 import 'get_errors_test.dart' as get_errors_test; | 7 import 'get_errors_test.dart' as get_errors_test; |
| 8 import 'get_hover_test.dart' as get_hover_test; | 8 import 'get_hover_test.dart' as get_hover_test; |
| 9 import 'get_navigation_test.dart' as get_navigation_test; | 9 import 'get_navigation_test.dart' as get_navigation_test; |
| 10 import 'navigation_collector_test.dart' as navigation_collector_test; | |
| 11 import 'notification_analysis_options_test.dart' | 10 import 'notification_analysis_options_test.dart' |
| 12 as notification_analysis_options_test; | 11 as notification_analysis_options_test; |
| 13 import 'notification_analyzedFiles_test.dart' | 12 import 'notification_analyzedFiles_test.dart' |
| 14 as notification_analyzedFiles_test; | 13 as notification_analyzedFiles_test; |
| 15 import 'notification_closingLabels_test.dart' | 14 import 'notification_closingLabels_test.dart' |
| 16 as notification_closingLabels_test; | 15 as notification_closingLabels_test; |
| 17 import 'notification_errors_test.dart' as notification_errors_test; | 16 import 'notification_errors_test.dart' as notification_errors_test; |
| 18 import 'notification_highlights_test.dart' as notification_highlights_test; | 17 import 'notification_highlights_test.dart' as notification_highlights_test; |
| 19 import 'notification_highlights_test2.dart' as notification_highlights_test2; | 18 import 'notification_highlights_test2.dart' as notification_highlights_test2; |
| 20 import 'notification_implemented_test.dart' as notification_implemented_test; | 19 import 'notification_implemented_test.dart' as notification_implemented_test; |
| 21 import 'notification_navigation_test.dart' as notification_navigation_test; | 20 import 'notification_navigation_test.dart' as notification_navigation_test; |
| 22 import 'notification_occurrences_test.dart' as notification_occurrences_test; | 21 import 'notification_occurrences_test.dart' as notification_occurrences_test; |
| 23 import 'notification_outline_test.dart' as notification_outline_test; | 22 import 'notification_outline_test.dart' as notification_outline_test; |
| 24 import 'notification_overrides_test.dart' as notification_overrides_test; | 23 import 'notification_overrides_test.dart' as notification_overrides_test; |
| 25 import 'reanalyze_test.dart' as reanalyze_test; | 24 import 'reanalyze_test.dart' as reanalyze_test; |
| 26 import 'set_priority_files_test.dart' as set_priority_files_test; | 25 import 'set_priority_files_test.dart' as set_priority_files_test; |
| 27 import 'update_content_test.dart' as update_content_test; | 26 import 'update_content_test.dart' as update_content_test; |
| 28 | 27 |
| 29 /** | 28 /** |
| 30 * Utility for manually running all tests. | 29 * Utility for manually running all tests. |
| 31 */ | 30 */ |
| 32 main() { | 31 main() { |
| 33 defineReflectiveSuite(() { | 32 defineReflectiveSuite(() { |
| 34 get_errors_test.main(); | 33 get_errors_test.main(); |
| 35 get_hover_test.main(); | 34 get_hover_test.main(); |
| 36 get_navigation_test.main(); | 35 get_navigation_test.main(); |
| 37 navigation_collector_test.main(); | |
| 38 notification_analysis_options_test.main(); | 36 notification_analysis_options_test.main(); |
| 39 notification_analyzedFiles_test.main(); | 37 notification_analyzedFiles_test.main(); |
| 40 notification_closingLabels_test.main(); | 38 notification_closingLabels_test.main(); |
| 41 notification_errors_test.main(); | 39 notification_errors_test.main(); |
| 42 notification_highlights_test.main(); | 40 notification_highlights_test.main(); |
| 43 notification_highlights_test2.main(); | 41 notification_highlights_test2.main(); |
| 44 notification_implemented_test.main(); | 42 notification_implemented_test.main(); |
| 45 notification_navigation_test.main(); | 43 notification_navigation_test.main(); |
| 46 notification_occurrences_test.main(); | 44 notification_occurrences_test.main(); |
| 47 notification_outline_test.main(); | 45 notification_outline_test.main(); |
| 48 notification_overrides_test.main(); | 46 notification_overrides_test.main(); |
| 49 reanalyze_test.main(); | 47 reanalyze_test.main(); |
| 50 set_priority_files_test.main(); | 48 set_priority_files_test.main(); |
| 51 update_content_test.main(); | 49 update_content_test.main(); |
| 52 }, name: 'analysis'); | 50 }, name: 'analysis'); |
| 53 } | 51 } |
| OLD | NEW |