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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/html/TestAll.java

Issue 11348291: Analyze Dart scripts in HTML files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Analyze in builder thread Created 8 years, 1 month 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.core_test/src/com/google/dart/tools/core/html/TestAll.java
diff --git a/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/model/TestAll.java b/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/html/TestAll.java
similarity index 89%
copy from editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/model/TestAll.java
copy to editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/html/TestAll.java
index f1bb622ee87d495961775060ca53904ecacb29da..299ef936ce8e49a022a14a256362239080f50745 100644
--- a/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/model/TestAll.java
+++ b/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/html/TestAll.java
@@ -11,7 +11,7 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
-package com.google.dart.tools.core.model;
+package com.google.dart.tools.core.html;
import junit.framework.Test;
import junit.framework.TestSuite;
@@ -19,7 +19,7 @@ import junit.framework.TestSuite;
public class TestAll {
public static Test suite() {
TestSuite suite = new TestSuite("Tests in " + TestAll.class.getPackage().getName());
- suite.addTestSuite(DartConventionsTest.class);
+ suite.addTestSuite(HtmlAnalyzeHelperTest.class);
return suite;
}
}

Powered by Google App Engine
This is Rietveld 408576698