| Index: pkg/analysis_server/test/integration/search/test_all.dart
|
| diff --git a/pkg/analysis_services/test/search/test_all.dart b/pkg/analysis_server/test/integration/search/test_all.dart
|
| similarity index 57%
|
| copy from pkg/analysis_services/test/search/test_all.dart
|
| copy to pkg/analysis_server/test/integration/search/test_all.dart
|
| index 86364491209dae7ac9f4dd6073c862b217027724..e3c4459fb95f5b365b910b54996bed8967fa2f4e 100644
|
| --- a/pkg/analysis_services/test/search/test_all.dart
|
| +++ b/pkg/analysis_server/test/integration/search/test_all.dart
|
| @@ -2,21 +2,18 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -library test.services.src.search.all;
|
| +library test.integration.search.all;
|
|
|
| import 'package:unittest/unittest.dart';
|
|
|
| -import 'hierarchy_test.dart' as hierarchy_test;
|
| -import 'search_engine_test.dart' as search_engine_test;
|
| -
|
| +import 'get_type_hierarchy_test.dart' as get_type_hierarchy_test;
|
|
|
| /**
|
| - * Utility for manually running all tests.
|
| + * Utility for manually running all integration tests.
|
| */
|
| main() {
|
| groupSep = ' | ';
|
| group('search', () {
|
| - hierarchy_test.main();
|
| - search_engine_test.main();
|
| + get_type_hierarchy_test.main();
|
| });
|
| }
|
|
|