| 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:test_reflective_loader/test_reflective_loader.dart'; |
| 6 | 6 |
| 7 import 'analysis/test_all.dart' as analysis_all; | 7 import 'analysis/test_all.dart' as analysis_all; |
| 8 import 'analysis_server_test.dart' as analysis_server_test; | 8 import 'analysis_server_test.dart' as analysis_server_test; |
| 9 import 'channel/test_all.dart' as channel_test; | 9 import 'channel/test_all.dart' as channel_test; |
| 10 import 'completion_test.dart' as completion_test; | 10 import 'completion_test.dart' as completion_test; |
| 11 import 'context_manager_test.dart' as context_manager_test; | 11 import 'context_manager_test.dart' as context_manager_test; |
| 12 import 'domain_analysis_test.dart' as domain_analysis_test; | 12 import 'domain_analysis_test.dart' as domain_analysis_test; |
| 13 import 'domain_completion_test.dart' as domain_completion_test; | 13 import 'domain_completion_test.dart' as domain_completion_test; |
| 14 import 'domain_diagnostic_test.dart' as domain_experimental_test; | 14 import 'domain_diagnostic_test.dart' as domain_experimental_test; |
| 15 import 'domain_execution_test.dart' as domain_execution_test; | 15 import 'domain_execution_test.dart' as domain_execution_test; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 26 import 'socket_server_test.dart' as socket_server_test; | 26 import 'socket_server_test.dart' as socket_server_test; |
| 27 import 'source/test_all.dart' as source_all; | 27 import 'source/test_all.dart' as source_all; |
| 28 import 'src/test_all.dart' as src_all; | 28 import 'src/test_all.dart' as src_all; |
| 29 import 'utils.dart'; | 29 import 'utils.dart'; |
| 30 | 30 |
| 31 /** | 31 /** |
| 32 * Utility for manually running all tests. | 32 * Utility for manually running all tests. |
| 33 */ | 33 */ |
| 34 main() { | 34 main() { |
| 35 initializeTestEnvironment(); | 35 initializeTestEnvironment(); |
| 36 group('analysis_server', () { | 36 defineReflectiveSuite(() { |
| 37 analysis_all.main(); | 37 analysis_all.main(); |
| 38 analysis_server_test.main(); | 38 analysis_server_test.main(); |
| 39 channel_test.main(); | 39 channel_test.main(); |
| 40 completion_test.main(); | 40 completion_test.main(); |
| 41 context_manager_test.main(); | 41 context_manager_test.main(); |
| 42 domain_analysis_test.main(); | 42 domain_analysis_test.main(); |
| 43 domain_completion_test.main(); | 43 domain_completion_test.main(); |
| 44 domain_execution_test.main(); | 44 domain_execution_test.main(); |
| 45 domain_experimental_test.main(); | 45 domain_experimental_test.main(); |
| 46 domain_server_test.main(); | 46 domain_server_test.main(); |
| 47 edit_all.main(); | 47 edit_all.main(); |
| 48 operation_test_all.main(); | 48 operation_test_all.main(); |
| 49 plugin_all.main(); | 49 plugin_all.main(); |
| 50 protocol_server_test.main(); | 50 protocol_server_test.main(); |
| 51 protocol_test.main(); | 51 protocol_test.main(); |
| 52 search_all.main(); | 52 search_all.main(); |
| 53 server_options.main(); | 53 server_options.main(); |
| 54 services_all.main(); | 54 services_all.main(); |
| 55 single_context_manager_test.main(); | 55 single_context_manager_test.main(); |
| 56 socket_server_test.main(); | 56 socket_server_test.main(); |
| 57 source_all.main(); | 57 source_all.main(); |
| 58 src_all.main(); | 58 src_all.main(); |
| 59 }); | 59 }, name: 'analisys_server'); |
| 60 } | 60 } |
| OLD | NEW |