| 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 e58b53c5db0e5dc88bf3f1f5839646c040516eb7..28be78de417fecb39d7c5f6adb25abefa80763a4 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
|
| @@ -31,6 +31,7 @@ import org.eclipse.core.resources.IResourceChangeEvent;
|
| import org.eclipse.core.resources.IResourceDelta;
|
|
|
| import java.util.List;
|
| +import java.util.Map;
|
|
|
| public class DartProjectManagerTest extends TestCase {
|
|
|
| @@ -38,11 +39,15 @@ public class DartProjectManagerTest extends TestCase {
|
| private int callCount = 0;
|
| private List<String> includedPaths;
|
| private List<String> excludedPaths;
|
| + private Map<String, String> packageRoots;
|
|
|
| @Override
|
| - public void analysis_setAnalysisRoots(List<String> includedPaths, List<String> excludedPaths) {
|
| + public void analysis_setAnalysisRoots(List<String> includedPaths, List<String> excludedPaths,
|
| + Map<String, String> packageRoots) {
|
| + // TODO(paulberry): test package roots.
|
| this.includedPaths = includedPaths;
|
| this.excludedPaths = excludedPaths;
|
| + this.packageRoots = packageRoots;
|
| callCount++;
|
| }
|
|
|
|
|