Renamed test data folders

This commit is contained in:
Valentin Kipyatkov
2015-07-21 11:37:19 +03:00
parent 9ad04a1a26
commit a81ed335d0
28 changed files with 24 additions and 24 deletions
@@ -92,77 +92,77 @@ public class IntentionTestGenerated extends AbstractIntentionTest {
} }
} }
@TestMetadata("idea/testData/intentions/addForLoopIndicesIntention") @TestMetadata("idea/testData/intentions/addForLoopIndices")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class) @RunWith(JUnit3RunnerWithInners.class)
public static class AddForLoopIndicesIntention extends AbstractIntentionTest { public static class AddForLoopIndices extends AbstractIntentionTest {
public void testAllFilesPresentInAddForLoopIndicesIntention() throws Exception { public void testAllFilesPresentInAddForLoopIndices() throws Exception {
JetTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/intentions/addForLoopIndicesIntention"), Pattern.compile("^([\\w\\-_]+)\\.kt$"), true); JetTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/intentions/addForLoopIndices"), Pattern.compile("^([\\w\\-_]+)\\.kt$"), true);
} }
@TestMetadata("inapplicableExistingIndices.kt") @TestMetadata("inapplicableExistingIndices.kt")
public void testInapplicableExistingIndices() throws Exception { public void testInapplicableExistingIndices() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/addForLoopIndicesIntention/inapplicableExistingIndices.kt"); String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/addForLoopIndices/inapplicableExistingIndices.kt");
doTest(fileName); doTest(fileName);
} }
@TestMetadata("inapplicableOverridenFunction.kt") @TestMetadata("inapplicableOverridenFunction.kt")
public void testInapplicableOverridenFunction() throws Exception { public void testInapplicableOverridenFunction() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/addForLoopIndicesIntention/inapplicableOverridenFunction.kt"); String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/addForLoopIndices/inapplicableOverridenFunction.kt");
doTest(fileName); doTest(fileName);
} }
@TestMetadata("inapplicableSyntaxError.kt") @TestMetadata("inapplicableSyntaxError.kt")
public void testInapplicableSyntaxError() throws Exception { public void testInapplicableSyntaxError() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/addForLoopIndicesIntention/inapplicableSyntaxError.kt"); String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/addForLoopIndices/inapplicableSyntaxError.kt");
doTest(fileName); doTest(fileName);
} }
@TestMetadata("inapplicableUnorderedCollection.kt") @TestMetadata("inapplicableUnorderedCollection.kt")
public void testInapplicableUnorderedCollection() throws Exception { public void testInapplicableUnorderedCollection() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/addForLoopIndicesIntention/inapplicableUnorderedCollection.kt"); String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/addForLoopIndices/inapplicableUnorderedCollection.kt");
doTest(fileName); doTest(fileName);
} }
@TestMetadata("intArray.kt") @TestMetadata("intArray.kt")
public void testIntArray() throws Exception { public void testIntArray() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/addForLoopIndicesIntention/intArray.kt"); String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/addForLoopIndices/intArray.kt");
doTest(fileName); doTest(fileName);
} }
@TestMetadata("iterable.kt") @TestMetadata("iterable.kt")
public void testIterable() throws Exception { public void testIterable() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/addForLoopIndicesIntention/iterable.kt"); String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/addForLoopIndices/iterable.kt");
doTest(fileName); doTest(fileName);
} }
@TestMetadata("listWithType.kt") @TestMetadata("listWithType.kt")
public void testListWithType() throws Exception { public void testListWithType() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/addForLoopIndicesIntention/listWithType.kt"); String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/addForLoopIndices/listWithType.kt");
doTest(fileName); doTest(fileName);
} }
@TestMetadata("objectArray.kt") @TestMetadata("objectArray.kt")
public void testObjectArray() throws Exception { public void testObjectArray() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/addForLoopIndicesIntention/objectArray.kt"); String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/addForLoopIndices/objectArray.kt");
doTest(fileName); doTest(fileName);
} }
@TestMetadata("simpleIntList.kt") @TestMetadata("simpleIntList.kt")
public void testSimpleIntList() throws Exception { public void testSimpleIntList() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/addForLoopIndicesIntention/simpleIntList.kt"); String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/addForLoopIndices/simpleIntList.kt");
doTest(fileName); doTest(fileName);
} }
@TestMetadata("stream.kt") @TestMetadata("stream.kt")
public void testStream() throws Exception { public void testStream() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/addForLoopIndicesIntention/stream.kt"); String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/addForLoopIndices/stream.kt");
doTest(fileName); doTest(fileName);
} }
@TestMetadata("string.kt") @TestMetadata("string.kt")
public void testString() throws Exception { public void testString() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/addForLoopIndicesIntention/string.kt"); String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/addForLoopIndices/string.kt");
doTest(fileName); doTest(fileName);
} }
} }
@@ -6164,41 +6164,41 @@ public class IntentionTestGenerated extends AbstractIntentionTest {
} }
@TestMetadata("idea/testData/intentions/removeForLoopIndicesIntention") @TestMetadata("idea/testData/intentions/removeForLoopIndices")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class) @RunWith(JUnit3RunnerWithInners.class)
public static class RemoveForLoopIndicesIntention extends AbstractIntentionTest { public static class RemoveForLoopIndices extends AbstractIntentionTest {
public void testAllFilesPresentInRemoveForLoopIndicesIntention() throws Exception { public void testAllFilesPresentInRemoveForLoopIndices() throws Exception {
JetTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/intentions/removeForLoopIndicesIntention"), Pattern.compile("^([\\w\\-_]+)\\.kt$"), true); JetTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/intentions/removeForLoopIndices"), Pattern.compile("^([\\w\\-_]+)\\.kt$"), true);
} }
@TestMetadata("inapplicableForLoop.kt") @TestMetadata("inapplicableForLoop.kt")
public void testInapplicableForLoop() throws Exception { public void testInapplicableForLoop() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/removeForLoopIndicesIntention/inapplicableForLoop.kt"); String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/removeForLoopIndices/inapplicableForLoop.kt");
doTest(fileName); doTest(fileName);
} }
@TestMetadata("inapplicableIndexUse.kt") @TestMetadata("inapplicableIndexUse.kt")
public void testInapplicableIndexUse() throws Exception { public void testInapplicableIndexUse() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/removeForLoopIndicesIntention/inapplicableIndexUse.kt"); String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/removeForLoopIndices/inapplicableIndexUse.kt");
doTest(fileName); doTest(fileName);
} }
@TestMetadata("inapplicableOverridenFunction.kt") @TestMetadata("inapplicableOverridenFunction.kt")
public void testInapplicableOverridenFunction() throws Exception { public void testInapplicableOverridenFunction() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/removeForLoopIndicesIntention/inapplicableOverridenFunction.kt"); String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/removeForLoopIndices/inapplicableOverridenFunction.kt");
doTest(fileName); doTest(fileName);
} }
@TestMetadata("loopWithType.kt") @TestMetadata("loopWithType.kt")
public void testLoopWithType() throws Exception { public void testLoopWithType() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/removeForLoopIndicesIntention/loopWithType.kt"); String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/removeForLoopIndices/loopWithType.kt");
doTest(fileName); doTest(fileName);
} }
@TestMetadata("simpleLoopWithIndices.kt") @TestMetadata("simpleLoopWithIndices.kt")
public void testSimpleLoopWithIndices() throws Exception { public void testSimpleLoopWithIndices() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/removeForLoopIndicesIntention/simpleLoopWithIndices.kt"); String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/removeForLoopIndices/simpleLoopWithIndices.kt");
doTest(fileName); doTest(fileName);
} }
} }