| 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_notification_navigation_test.dart' as analysis_notification_nav
igation_test; | 7 import 'analysis_notification_navigation_test.dart' as analysis_notification_nav
igation_test; |
| 8 import 'analysis_notification_outline_test.dart' as analysis_notification_outlin
e_test; | 8 import 'analysis_notification_outline_test.dart' as analysis_notification_outlin
e_test; |
| 9 import 'analysis_server_test.dart' as analysis_server_test; | 9 import 'analysis_server_test.dart' as analysis_server_test; |
| 10 import 'channel_test.dart' as channel_test; | 10 import 'channel_test.dart' as channel_test; |
| 11 import 'domain_analysis_test.dart' as domain_analysis_test; | 11 import 'domain_analysis_test.dart' as domain_analysis_test; |
| 12 import 'domain_completion_test.dart' as domain_completion_test; |
| 13 import 'domain_edit_test.dart' as domain_edit_test; |
| 14 import 'domain_search_test.dart' as domain_search_test; |
| 12 import 'domain_server_test.dart' as domain_server_test; | 15 import 'domain_server_test.dart' as domain_server_test; |
| 13 import 'index/test_all.dart' as index_test_all; | 16 import 'index/test_all.dart' as index_test_all; |
| 14 import 'operation/test_all.dart' as operation_test; | 17 import 'operation/test_all.dart' as operation_test; |
| 15 import 'protocol_test.dart' as protocol_test; | 18 import 'protocol_test.dart' as protocol_test; |
| 16 import 'resource_test.dart' as resource_test; | 19 import 'resource_test.dart' as resource_test; |
| 17 import 'socket_server_test.dart' as socket_server_test; | 20 import 'socket_server_test.dart' as socket_server_test; |
| 18 | 21 |
| 19 /** | 22 /** |
| 20 * Utility for manually running all tests. | 23 * Utility for manually running all tests. |
| 21 */ | 24 */ |
| 22 main() { | 25 main() { |
| 23 groupSep = ' | '; | 26 groupSep = ' | '; |
| 24 group('analysis_server', () { | 27 group('analysis_server', () { |
| 25 analysis_notification_navigation_test.main(); | 28 analysis_notification_navigation_test.main(); |
| 26 analysis_notification_outline_test.main(); | 29 analysis_notification_outline_test.main(); |
| 27 analysis_server_test.main(); | 30 analysis_server_test.main(); |
| 28 channel_test.main(); | 31 channel_test.main(); |
| 29 domain_analysis_test.main(); | 32 domain_analysis_test.main(); |
| 33 domain_completion_test.main(); |
| 34 domain_edit_test.main(); |
| 35 domain_search_test.main(); |
| 30 domain_server_test.main(); | 36 domain_server_test.main(); |
| 31 index_test_all.main(); | 37 index_test_all.main(); |
| 32 operation_test.main(); | 38 operation_test.main(); |
| 33 protocol_test.main(); | 39 protocol_test.main(); |
| 34 resource_test.main(); | 40 resource_test.main(); |
| 35 socket_server_test.main(); | 41 socket_server_test.main(); |
| 36 }); | 42 }); |
| 37 } | 43 } |
| OLD | NEW |