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

Unified Diff: editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/TestAll.java

Issue 303233007: First cut at server timing tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixed some bugs, added tests Created 6 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
Index: editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/TestAll.java
diff --git a/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/TestAll.java b/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/TestAll.java
similarity index 87%
copy from editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/TestAll.java
copy to editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/TestAll.java
index b0a9b8cc5ad50322c8ccc702f62b5923921f192a..1a2016e13c70379b94a3f164b37d0bbec03eac9d 100644
--- a/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/TestAll.java
+++ b/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/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.server;
+package com.google.dart.server.internal;
import junit.framework.Test;
import junit.framework.TestSuite;
@@ -19,8 +19,6 @@ import junit.framework.TestSuite;
public class TestAll {
public static Test suite() {
TestSuite suite = new TestSuite("Tests in " + TestAll.class.getPackage().getName());
- suite.addTestSuite(AnalysisServerErrorCodeTest.class);
- suite.addTestSuite(AnalysisServerErrorTest.class);
suite.addTest(com.google.dart.server.internal.local.TestAll.suite());
suite.addTest(com.google.dart.server.internal.remote.TestAll.suite());
return suite;

Powered by Google App Engine
This is Rietveld 408576698