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

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

Issue 300313002: Switch to using remote analysis server instead of local. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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/remote/processor/TestAll.java
diff --git a/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/remote/TestAll.java b/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/remote/processor/TestAll.java
similarity index 81%
copy from editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/remote/TestAll.java
copy to editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/remote/processor/TestAll.java
index f6560c7f664946278e0eec57dac875b92fd26d69..dc997433ca2b2db281d6c595faedaffb98873580 100644
--- a/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/remote/TestAll.java
+++ b/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/remote/processor/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.internal.remote;
+package com.google.dart.server.internal.remote.processor;
import junit.framework.Test;
import junit.framework.TestSuite;
@@ -20,9 +20,8 @@ public class TestAll {
public static Test suite() {
TestSuite suite = new TestSuite("Tests in " + TestAll.class.getPackage().getName());
suite.addTest(com.google.dart.server.internal.remote.utilities.TestAll.suite());
- suite.addTestSuite(ByteRequestSinkTest.class);
- suite.addTestSuite(ByteResposeStreamTest.class);
- suite.addTestSuite(RemoteAnalysisServerImplTest.class);
+ suite.addTestSuite(AnalysisErrorImplTest.class);
+ suite.addTestSuite(NotificationErrorsProcessorTest.class);
return suite;
}
}

Powered by Google App Engine
This is Rietveld 408576698