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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/analysis/model/DartProjectManagerTest.java

Issue 460423003: Get the RemoteAnalysisServer to compile against the new generated AnalysisServer interface. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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.core_test/src/com/google/dart/tools/core/internal/analysis/model/DartProjectManagerTest.java
diff --git a/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/analysis/model/DartProjectManagerTest.java b/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/analysis/model/DartProjectManagerTest.java
index 816408d3cebeed1c6bb112d4bbc5397a6b93ecc1..e58b53c5db0e5dc88bf3f1f5839646c040516eb7 100644
--- a/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/analysis/model/DartProjectManagerTest.java
+++ b/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/analysis/model/DartProjectManagerTest.java
@@ -39,6 +39,13 @@ public class DartProjectManagerTest extends TestCase {
private List<String> includedPaths;
private List<String> excludedPaths;
+ @Override
+ public void analysis_setAnalysisRoots(List<String> includedPaths, List<String> excludedPaths) {
+ this.includedPaths = includedPaths;
+ this.excludedPaths = excludedPaths;
+ callCount++;
+ }
+
public void assertRoots(int expectedCallCount, MockProject[] expectedProjects,
IResource[] expectedExcludes) {
assertEquals(expectedCallCount, callCount);
@@ -53,13 +60,6 @@ public class DartProjectManagerTest extends TestCase {
}
}
}
-
- @Override
- public void setAnalysisRoots(List<String> includedPaths, List<String> excludedPaths) {
- this.includedPaths = includedPaths;
- this.excludedPaths = excludedPaths;
- callCount++;
- }
}
private MockWorkspace workspace;

Powered by Google App Engine
This is Rietveld 408576698