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