| 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 library test.integration.analysis.all; | 5 library test.integration.analysis.all; |
| 6 | 6 |
| 7 import 'package:unittest/unittest.dart'; | 7 import 'package:unittest/unittest.dart'; |
| 8 | 8 |
| 9 import 'error_test.dart' as error_test; | 9 import 'error_test.dart' as error_test; |
| 10 import 'get_errors_after_analysis_test.dart' as get_errors_after_analysis_test; | 10 import 'get_errors_after_analysis_test.dart' as get_errors_after_analysis_test; |
| 11 import 'get_errors_before_analysis_test.dart' as | 11 import 'get_errors_before_analysis_test.dart' |
| 12 get_errors_before_analysis_test; | 12 as get_errors_before_analysis_test; |
| 13 import 'get_hover_test.dart' as get_hover_test; | 13 import 'get_hover_test.dart' as get_hover_test; |
| 14 import 'highlights_test.dart' as highlights_test; | 14 import 'highlights_test.dart' as highlights_test; |
| 15 import 'navigation_test.dart' as navigation_test; | 15 import 'navigation_test.dart' as navigation_test; |
| 16 import 'occurrences_test.dart' as occurrences_test; | 16 import 'occurrences_test.dart' as occurrences_test; |
| 17 import 'outline_test.dart' as outline_test; | 17 import 'outline_test.dart' as outline_test; |
| 18 import 'overrides_test.dart' as overrides_test; | 18 import 'overrides_test.dart' as overrides_test; |
| 19 import 'package_root_test.dart' as package_root_test; | 19 import 'package_root_test.dart' as package_root_test; |
| 20 import 'reanalyze_concurrent_test.dart' as reanalyze_concurrent_test; | 20 import 'reanalyze_concurrent_test.dart' as reanalyze_concurrent_test; |
| 21 import 'reanalyze_test.dart' as reanalyze_test; | 21 import 'reanalyze_test.dart' as reanalyze_test; |
| 22 import 'update_content_list_test.dart' as update_content_list_test; | 22 import 'update_content_list_test.dart' as update_content_list_test; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 37 occurrences_test.main(); | 37 occurrences_test.main(); |
| 38 outline_test.main(); | 38 outline_test.main(); |
| 39 overrides_test.main(); | 39 overrides_test.main(); |
| 40 package_root_test.main(); | 40 package_root_test.main(); |
| 41 reanalyze_concurrent_test.main(); | 41 reanalyze_concurrent_test.main(); |
| 42 reanalyze_test.main(); | 42 reanalyze_test.main(); |
| 43 update_content_test.main(); | 43 update_content_test.main(); |
| 44 update_content_list_test.main(); | 44 update_content_list_test.main(); |
| 45 }); | 45 }); |
| 46 } | 46 } |
| OLD | NEW |