| Index: pkg/analysis_services/test/search/test_all.dart
|
| diff --git a/pkg/analysis_server/test/computer/test_all.dart b/pkg/analysis_services/test/search/test_all.dart
|
| similarity index 69%
|
| copy from pkg/analysis_server/test/computer/test_all.dart
|
| copy to pkg/analysis_services/test/search/test_all.dart
|
| index 2badfdfba9f43a6d90c18141a5bc2dc3f989124e..fad272d1f10db948573f85c4b6ee5cbb234f9303 100644
|
| --- a/pkg/analysis_server/test/computer/test_all.dart
|
| +++ b/pkg/analysis_services/test/search/test_all.dart
|
| @@ -2,11 +2,11 @@
|
| // 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.computer.all;
|
| +library test.services.src.scheglov.all;
|
|
|
| import 'package:unittest/unittest.dart';
|
|
|
| -import 'element_test.dart' as element_test;
|
| +import 'search_engine_test.dart' as search_engine_test;
|
|
|
|
|
| /**
|
| @@ -14,7 +14,7 @@ import 'element_test.dart' as element_test;
|
| */
|
| main() {
|
| groupSep = ' | ';
|
| - group('index', () {
|
| - element_test.main();
|
| + group('search', () {
|
| + search_engine_test.main();
|
| });
|
| }
|
|
|