| Index: editor/tools/plugins/com.google.dart.engine.services_test/src/com/google/dart/engine/services/internal/refactoring/RefactoringImplTest.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine.services_test/src/com/google/dart/engine/services/internal/refactoring/RefactoringImplTest.java b/editor/tools/plugins/com.google.dart.engine.services_test/src/com/google/dart/engine/services/internal/refactoring/RefactoringImplTest.java
|
| index 28dc2670f242c4ee390a01e5a719580350553869..a285f1ded42b8f55dae095c5b9b0fa877ec51ba3 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine.services_test/src/com/google/dart/engine/services/internal/refactoring/RefactoringImplTest.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine.services_test/src/com/google/dart/engine/services/internal/refactoring/RefactoringImplTest.java
|
| @@ -47,6 +47,7 @@ public abstract class RefactoringImplTest extends AbstractDartTest {
|
| public static void assertChangeResult(Change compositeChange, Source source, String expected)
|
| throws Exception {
|
| SourceChange sourceChange = getSourceChange(compositeChange, source);
|
| + assertNotNull("No change for: " + source.toString(), sourceChange);
|
| String sourceResult = getChangeResult(source, sourceChange);
|
| assertEquals(expected, sourceResult);
|
| }
|
| @@ -137,7 +138,7 @@ public abstract class RefactoringImplTest extends AbstractDartTest {
|
|
|
| protected final ProgressMonitor pm = new NullProgressMonitor();
|
|
|
| - private Index index;
|
| + protected Index index;
|
|
|
| protected SearchEngine searchEngine;
|
|
|
|
|