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

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

Issue 10384142: Initial support for 'Extract temp' - only when single expression selected (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Use ASTVisitor as type switch Created 8 years, 7 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
« no previous file with comments | « editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/ExtractUtilsTest.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/TestAll.java
diff --git a/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/TestAll.java b/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/TestAll.java
index 8d1400266c8d7b4e81071d5db861a626293b4b73..ff9ab7d3669e1baaf2d5dddabd8001f0276c1505 100644
--- a/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/TestAll.java
+++ b/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/TestAll.java
@@ -20,6 +20,7 @@ public class TestAll {
public static Test suite() {
TestSuite suite = new TestSuite("Tests in " + TestAll.class.getPackage().getName());
suite.addTestSuite(ExecutionUtilsTest.class);
+ // rename
suite.addTestSuite(RenameAnalyzeUtilTest.class);
suite.addTestSuite(RenameLocalVariableProcessorTest.class);
suite.addTestSuite(RenameFieldProcessorTest.class);
@@ -32,6 +33,10 @@ public class TestAll {
suite.addTestSuite(RenameTypeParameterProcessorTest.class);
suite.addTestSuite(RenameImportProcessorTest.class);
suite.addTestSuite(RenameResourceParticipantTest.class);
+ // extract
+ suite.addTestSuite(ExtractUtilsTest.class);
+ suite.addTestSuite(ExtractLocalRefactoringTest.class);
+ // done
return suite;
}
}
« no previous file with comments | « editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/ExtractUtilsTest.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698