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

Unified Diff: editor/tools/plugins/com.google.dart.engine.services_test/src/com/google/dart/engine/services/internal/refactoring/RefactoringImplTest.java

Issue 23498016: Update only unique references during rename refactoring. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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.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;

Powered by Google App Engine
This is Rietveld 408576698