| Index: editor/tools/plugins/com.google.dart.tools.ui_test/src-ui/TestAll.java
|
| diff --git a/editor/tools/plugins/com.google.dart.tools.ui_test/src-ui/TestAll.java b/editor/tools/plugins/com.google.dart.tools.ui_test/src-ui/TestAll.java
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..06a977facb2bcda684bb953f3cf224197be099fa
|
| --- /dev/null
|
| +++ b/editor/tools/plugins/com.google.dart.tools.ui_test/src-ui/TestAll.java
|
| @@ -0,0 +1,10 @@
|
| +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.TestAll.suite());
|
| + return suite;
|
| + }
|
| +}
|
|
|