| Index: pkg/analysis_server/test/index/test_all.dart
|
| diff --git a/pkg/analysis_server/test/operation/test_all.dart b/pkg/analysis_server/test/index/test_all.dart
|
| similarity index 53%
|
| copy from pkg/analysis_server/test/operation/test_all.dart
|
| copy to pkg/analysis_server/test/index/test_all.dart
|
| index 4a0d39b449f5f572b9d8738d59fb2d9404c8dca4..d9123a9e9b4c5462dd9af6f959b88129b0c6cefd 100644
|
| --- a/pkg/analysis_server/test/operation/test_all.dart
|
| +++ b/pkg/analysis_server/test/index/test_all.dart
|
| @@ -2,20 +2,21 @@
|
| // 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.index.all;
|
| +
|
| import 'package:unittest/unittest.dart';
|
|
|
| -import 'operation_analysis_test.dart' as analysis_operation_test;
|
| -import 'operation_queue_test.dart' as operation_queue_test;
|
| -import 'operation_test.dart' as operation_test;
|
| +import 'b_plus_tree_test.dart' as b_plus_tree_test;
|
| +import 'page_node_manager_test.dart' as page_node_manager_test;
|
| +
|
|
|
| /**
|
| * Utility for manually running all tests.
|
| */
|
| main() {
|
| groupSep = ' | ';
|
| - group('operation', () {
|
| - analysis_operation_test.main();
|
| - operation_queue_test.main();
|
| - operation_test.main();
|
| + group('analysis_server', () {
|
| + b_plus_tree_test.main();
|
| + page_node_manager_test.main();
|
| });
|
| }
|
|
|