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

Unified Diff: editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/index/TestAll.java

Issue 11787017: Initial implementation of MemoryIndexStoreImpl and IndexContributor. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update for review comments Created 7 years, 11 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: editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/index/TestAll.java
diff --git a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/index/TestAll.java b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/index/TestAll.java
index 05dd2d09e53cb23d3492f19e5faf56499318856c..8e97e01fff5fbce191cef3aff24218691beee320 100644
--- a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/index/TestAll.java
+++ b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/index/TestAll.java
@@ -22,8 +22,10 @@ public class TestAll {
public static Test suite() {
TestSuite suite = new ExtendedTestSuite("Tests in " + TestAll.class.getPackage().getName());
suite.addTest(com.google.dart.engine.internal.index.operation.TestAll.suite());
- suite.addTestSuite(IndexImplTest.class);
suite.addTestSuite(ContributedLocationTest.class);
+ suite.addTestSuite(IndexImplTest.class);
+ suite.addTestSuite(MemoryIndexStoreImplTest.class);
+ suite.addTestSuite(IndexContributorTest.class);
return suite;
}
}

Powered by Google App Engine
This is Rietveld 408576698