| 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 get_errors_before_analysis_test
; | 11 import 'get_errors_before_analysis_test.dart' as get_errors_before_analysis_test
; |
| 12 import 'get_hover_test.dart' as get_hover_test; | 12 import 'get_hover_test.dart' as get_hover_test; |
| 13 import 'highlights_test.dart' as highlights_test; |
| 13 import 'update_content_test.dart' as update_content_test; | 14 import 'update_content_test.dart' as update_content_test; |
| 14 | 15 |
| 15 /** | 16 /** |
| 16 * Utility for manually running all integration tests. | 17 * Utility for manually running all integration tests. |
| 17 */ | 18 */ |
| 18 main() { | 19 main() { |
| 19 groupSep = ' | '; | 20 groupSep = ' | '; |
| 20 group('analysis', () { | 21 group('analysis', () { |
| 21 error_test.main(); | 22 error_test.main(); |
| 22 get_errors_after_analysis_test.main(); | 23 get_errors_after_analysis_test.main(); |
| 23 get_errors_before_analysis_test.main(); | 24 get_errors_before_analysis_test.main(); |
| 24 get_hover_test.main(); | 25 get_hover_test.main(); |
| 26 highlights_test.main(); |
| 25 update_content_test.main(); | 27 update_content_test.main(); |
| 26 }); | 28 }); |
| 27 } | 29 } |
| OLD | NEW |