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

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

Issue 11316129: Formatter checkpoint. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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/formatter/TestAll.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/formatter/TestAll.java (revision 15190)
+++ editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/formatter/TestAll.java (working copy)
@@ -15,6 +15,7 @@
import com.google.dart.engine.ExtendedTestSuite;
import com.google.dart.engine.formatter.edit.EditRecorderTest;
+import com.google.dart.engine.formatter.edit.StringEditOperationTest;
import junit.framework.Test;
import junit.framework.TestSuite;
@@ -25,8 +26,9 @@
public static Test suite() throws IOException {
TestSuite suite = new ExtendedTestSuite("Tests in " + TestAll.class.getPackage().getName());
+ suite.addTestSuite(StringEditOperationTest.class);
+ suite.addTestSuite(EditRecorderTest.class);
suite.addTest(CodeFormatterTest.suite());
- suite.addTestSuite(EditRecorderTest.class);
return suite;
}

Powered by Google App Engine
This is Rietveld 408576698