From c82ef0522d4635fca51315ba638c99ec3dc6e364 Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Tue, 16 Oct 2012 14:55:25 +0400 Subject: [PATCH] ImplementationTestUtils -> NavigationTestUtils rename --- .../plugin/navigation/JetGotoImplementationMultifileTest.java | 4 ++-- .../jet/plugin/navigation/JetGotoImplementationTest.java | 4 ++-- .../jetbrains/jet/plugin/navigation/JetGotoSymbolTest.java | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/idea/tests/org/jetbrains/jet/plugin/navigation/JetGotoImplementationMultifileTest.java b/idea/tests/org/jetbrains/jet/plugin/navigation/JetGotoImplementationMultifileTest.java index 8c8ae7c00e7..fcaf109a672 100644 --- a/idea/tests/org/jetbrains/jet/plugin/navigation/JetGotoImplementationMultifileTest.java +++ b/idea/tests/org/jetbrains/jet/plugin/navigation/JetGotoImplementationMultifileTest.java @@ -40,8 +40,8 @@ public class JetGotoImplementationMultifileTest extends CodeInsightTestCase { private void doMultifileTest(String ... fileNames) throws Exception { configureByFiles(null, fileNames); - GotoTargetHandler.GotoData gotoData = ImplementationTestUtils.invokeGotoImplementations(getEditor(), getFile()); - ImplementationTestUtils.assertGotoImplementations(getEditor(), gotoData); + GotoTargetHandler.GotoData gotoData = NavigationTestUtils.invokeGotoImplementations(getEditor(), getFile()); + NavigationTestUtils.assertGotoImplementations(getEditor(), gotoData); } @Override diff --git a/idea/tests/org/jetbrains/jet/plugin/navigation/JetGotoImplementationTest.java b/idea/tests/org/jetbrains/jet/plugin/navigation/JetGotoImplementationTest.java index 790351e1b04..c07b5646f6f 100644 --- a/idea/tests/org/jetbrains/jet/plugin/navigation/JetGotoImplementationTest.java +++ b/idea/tests/org/jetbrains/jet/plugin/navigation/JetGotoImplementationTest.java @@ -48,7 +48,7 @@ public class JetGotoImplementationTest extends LightCodeInsightTestCase { protected void doTest() { configureByFile(getTestName(false) + ".kt"); - GotoTargetHandler.GotoData gotoData = ImplementationTestUtils.invokeGotoImplementations(getEditor(), getFile()); - ImplementationTestUtils.assertGotoImplementations(getEditor(), gotoData); + GotoTargetHandler.GotoData gotoData = NavigationTestUtils.invokeGotoImplementations(getEditor(), getFile()); + NavigationTestUtils.assertGotoImplementations(getEditor(), gotoData); } } diff --git a/idea/tests/org/jetbrains/jet/plugin/navigation/JetGotoSymbolTest.java b/idea/tests/org/jetbrains/jet/plugin/navigation/JetGotoSymbolTest.java index 33d2c58ac85..1d2c7b7c808 100644 --- a/idea/tests/org/jetbrains/jet/plugin/navigation/JetGotoSymbolTest.java +++ b/idea/tests/org/jetbrains/jet/plugin/navigation/JetGotoSymbolTest.java @@ -48,6 +48,6 @@ public class JetGotoSymbolTest extends LightCodeInsightFixtureTestCase { String fileName = getTestName(true) + ".kt"; myFixture.configureByFile(fileName); - ImplementationTestUtils.assertGotoSymbol(getProject(), myFixture.getEditor()); + NavigationTestUtils.assertGotoSymbol(getProject(), myFixture.getEditor()); } }