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; |
} |