ImplementationTestUtils -> NavigationTestUtils rename

This commit is contained in:
Nikolay Krasko
2012-10-16 14:55:25 +04:00
parent d4d8ddb5a1
commit c82ef0522d
3 changed files with 5 additions and 5 deletions
@@ -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
@@ -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);
}
}
@@ -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());
}
}