| 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:unittest/unittest.dart'; | 5 import 'package:unittest/unittest.dart'; |
| 6 | 6 |
| 7 import 'analysis/test_all.dart' as analysis_all; | 7 import 'analysis/test_all.dart' as analysis_all; |
| 8 import 'analysis_hover_test.dart' as analysis_hover_test; | |
| 9 import 'analysis_notification_highlights_test.dart' as analysis_notification_hig
hlights_test; | |
| 10 import 'analysis_notification_navigation_test.dart' as analysis_notification_nav
igation_test; | |
| 11 import 'analysis_notification_occurrences_test.dart' as analysis_notification_oc
currences_test; | |
| 12 import 'analysis_notification_outline_test.dart' as analysis_notification_outlin
e_test; | |
| 13 import 'analysis_notification_overrides_test.dart' as analysis_notification_over
rides_test; | |
| 14 import 'analysis_server_test.dart' as analysis_server_test; | 8 import 'analysis_server_test.dart' as analysis_server_test; |
| 15 import 'channel/test_all.dart' as channel_test; | 9 import 'channel/test_all.dart' as channel_test; |
| 16 import 'computer/test_all.dart' as computer_test_all; | 10 import 'computer/test_all.dart' as computer_test_all; |
| 17 import 'context_manager_test.dart' as context_manager_test; | 11 import 'context_manager_test.dart' as context_manager_test; |
| 18 import 'domain_analysis_test.dart' as domain_analysis_test; | 12 import 'domain_analysis_test.dart' as domain_analysis_test; |
| 19 import 'domain_completion_test.dart' as domain_completion_test; | 13 import 'domain_completion_test.dart' as domain_completion_test; |
| 20 import 'domain_execution_test.dart' as domain_execution_test; | 14 import 'domain_execution_test.dart' as domain_execution_test; |
| 21 import 'domain_server_test.dart' as domain_server_test; | 15 import 'domain_server_test.dart' as domain_server_test; |
| 22 import 'edit/test_all.dart' as edit_all; | 16 import 'edit/test_all.dart' as edit_all; |
| 23 import 'operation/test_all.dart' as operation_test_all; | 17 import 'operation/test_all.dart' as operation_test_all; |
| 24 import 'protocol_test.dart' as protocol_test; | 18 import 'protocol_test.dart' as protocol_test; |
| 25 import 'search/test_all.dart' as search_all; | 19 import 'search/test_all.dart' as search_all; |
| 26 import 'services/test_all.dart' as services_all; | 20 import 'services/test_all.dart' as services_all; |
| 27 import 'socket_server_test.dart' as socket_server_test; | 21 import 'socket_server_test.dart' as socket_server_test; |
| 28 | 22 |
| 29 /** | 23 /** |
| 30 * Utility for manually running all tests. | 24 * Utility for manually running all tests. |
| 31 */ | 25 */ |
| 32 main() { | 26 main() { |
| 33 groupSep = ' | '; | 27 groupSep = ' | '; |
| 34 group('analysis_server', () { | 28 group('analysis_server', () { |
| 35 analysis_all.main(); | 29 analysis_all.main(); |
| 36 analysis_hover_test.main(); | |
| 37 analysis_notification_highlights_test.main(); | |
| 38 analysis_notification_navigation_test.main(); | |
| 39 analysis_notification_occurrences_test.main(); | |
| 40 analysis_notification_outline_test.main(); | |
| 41 analysis_notification_overrides_test.main(); | |
| 42 analysis_server_test.main(); | 30 analysis_server_test.main(); |
| 43 channel_test.main(); | 31 channel_test.main(); |
| 44 computer_test_all.main(); | 32 computer_test_all.main(); |
| 45 context_manager_test.main(); | 33 context_manager_test.main(); |
| 46 domain_analysis_test.main(); | 34 domain_analysis_test.main(); |
| 47 domain_completion_test.main(); | 35 domain_completion_test.main(); |
| 48 domain_execution_test.main(); | 36 domain_execution_test.main(); |
| 49 domain_server_test.main(); | 37 domain_server_test.main(); |
| 50 edit_all.main(); | 38 edit_all.main(); |
| 51 operation_test_all.main(); | 39 operation_test_all.main(); |
| 52 protocol_test.main(); | 40 protocol_test.main(); |
| 53 search_all.main(); | 41 search_all.main(); |
| 54 services_all.main(); | 42 services_all.main(); |
| 55 socket_server_test.main(); | 43 socket_server_test.main(); |
| 56 }); | 44 }); |
| 57 } | 45 } |
| OLD | NEW |