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

Unified Diff: editor/tools/plugins/com.google.dart.tools.ui_test/src-ui/editor/TestAll.java

Issue 18548007: UI tests for 'Rename' and 'Extract Local Variable' refactorings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes for review comments Created 7 years, 5 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.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;
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698