| Index: editor/tools/plugins/com.google.dart.tools.ui_test/src-ui/editor/TestAll.java
|
| diff --git a/editor/tools/plugins/com.google.dart.tools.ui_test/src-ui/editor/TestAll.java b/editor/tools/plugins/com.google.dart.tools.ui_test/src-ui/editor/TestAll.java
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4f0a52d8d2fc62185f38e59b2794a3cc2fdaf3d0
|
| --- /dev/null
|
| +++ b/editor/tools/plugins/com.google.dart.tools.ui_test/src-ui/editor/TestAll.java
|
| @@ -0,0 +1,12 @@
|
| +package editor;
|
| +
|
| +import junit.framework.Test;
|
| +import junit.framework.TestSuite;
|
| +
|
| +public class TestAll {
|
| + public static Test suite() {
|
| + TestSuite suite = new TestSuite("Tests in " + TestAll.class.getPackage().getName());
|
| + suite.addTest(editor.refactoring.TestAll.suite());
|
| + return suite;
|
| + }
|
| +}
|
|
|