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.engine_test/src/com/google/dart/engine/internal/index/operation/GetRelationshipsOperationTest.java

Issue 11787017: Initial implementation of MemoryIndexStoreImpl and IndexContributor. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update for review comments Created 7 years, 11 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_test/src/com/google/dart/engine/internal/index/operation/GetRelationshipsOperationTest.java
diff --git a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/index/operation/GetRelationshipsOperationTest.java b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/index/operation/GetRelationshipsOperationTest.java
index 7085b8e459d10bf8925e47244ffe3a640573fc44..124ebbd3824770b83279d274377a278f2415ebd1 100644
--- a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/index/operation/GetRelationshipsOperationTest.java
+++ b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/index/operation/GetRelationshipsOperationTest.java
@@ -14,7 +14,7 @@
package com.google.dart.engine.internal.index.operation;
import com.google.dart.engine.EngineTestCase;
-import com.google.dart.engine.element.ElementLocation;
+import com.google.dart.engine.element.ElementProxy;
import com.google.dart.engine.index.IndexStore;
import com.google.dart.engine.index.Location;
import com.google.dart.engine.index.Relationship;
@@ -27,7 +27,7 @@ import static org.mockito.Mockito.when;
public class GetRelationshipsOperationTest extends EngineTestCase {
private IndexStore store = mock(IndexStore.class);
- private ElementLocation elementLocation = mock(ElementLocation.class);
+ private ElementProxy elementLocation = mock(ElementProxy.class);
private RelationshipCallback callback = mock(RelationshipCallback.class);
private Relationship relationship = Relationship.getRelationship("test-relationship");
private GetRelationshipsOperation operation = new GetRelationshipsOperation(

Powered by Google App Engine
This is Rietveld 408576698