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

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

Issue 324743003: A NodeManager implementation with encoding/decoding keys/values into pages. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Tweak and include index tests 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/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();
});
}

Powered by Google App Engine
This is Rietveld 408576698