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