Minor: rename test cases

Original commit: 1298d115bd
This commit is contained in:
Alexey Tsvetkov
2015-09-24 15:24:23 +03:00
parent 5b4101ee0d
commit 4e7cc0b637
10 changed files with 6 additions and 6 deletions
@@ -65,15 +65,15 @@ public class IncrementalLazyCachesTestGenerated extends AbstractIncrementalLazyC
doTest(fileName); doTest(fileName);
} }
@TestMetadata("inlineFunctionDeclared") @TestMetadata("inlineFunctionWithUsage")
public void testInlineFunctionDeclared() throws Exception { public void testInlineFunctionWithUsage() throws Exception {
String fileName = JetTestUtils.navigationMetadata("jps-plugin/testData/incremental/lazyKotlinCaches/inlineFunctionDeclared/"); String fileName = JetTestUtils.navigationMetadata("jps-plugin/testData/incremental/lazyKotlinCaches/inlineFunctionWithUsage/");
doTest(fileName); doTest(fileName);
} }
@TestMetadata("inlineFunctionInlined") @TestMetadata("inlineFunctionWithoutUsage")
public void testInlineFunctionInlined() throws Exception { public void testInlineFunctionWithoutUsage() throws Exception {
String fileName = JetTestUtils.navigationMetadata("jps-plugin/testData/incremental/lazyKotlinCaches/inlineFunctionInlined/"); String fileName = JetTestUtils.navigationMetadata("jps-plugin/testData/incremental/lazyKotlinCaches/inlineFunctionWithoutUsage/");
doTest(fileName); doTest(fileName);
} }