Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Unified Diff: pkg/analysis_server/test/index/store/test_all.dart

Issue 351453004: Move split_store.dart to the store/ folder and extract collections/codecs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
});
-}
+}
« no previous file with comments | « pkg/analysis_server/test/index/store/split_store_test.dart ('k') | pkg/analysis_server/test/index/store/typed_mocks.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698