From 995b82ae62c446d20bf8017c60ee57e0e2fa3638 Mon Sep 17 00:00:00 2001 From: Valentin Kipyatkov Date: Tue, 28 Apr 2015 16:01:02 +0300 Subject: [PATCH] Renamed test data directory --- .../.intention | 0 .../completeGenericType.kt | 0 .../completeType.kt | 0 .../errorType.kt | 0 .../reconstructableType.kt | 0 .../reconstructableType.kt.after | 0 .../typeInDeclaration.kt | 0 .../intentions/IntentionTestGenerated.java | 18 +++++++++--------- 8 files changed, 9 insertions(+), 9 deletions(-) rename idea/testData/intentions/{reconstructedType => reconstructTypeInCastOrIs}/.intention (100%) rename idea/testData/intentions/{reconstructedType => reconstructTypeInCastOrIs}/completeGenericType.kt (100%) rename idea/testData/intentions/{reconstructedType => reconstructTypeInCastOrIs}/completeType.kt (100%) rename idea/testData/intentions/{reconstructedType => reconstructTypeInCastOrIs}/errorType.kt (100%) rename idea/testData/intentions/{reconstructedType => reconstructTypeInCastOrIs}/reconstructableType.kt (100%) rename idea/testData/intentions/{reconstructedType => reconstructTypeInCastOrIs}/reconstructableType.kt.after (100%) rename idea/testData/intentions/{reconstructedType => reconstructTypeInCastOrIs}/typeInDeclaration.kt (100%) diff --git a/idea/testData/intentions/reconstructedType/.intention b/idea/testData/intentions/reconstructTypeInCastOrIs/.intention similarity index 100% rename from idea/testData/intentions/reconstructedType/.intention rename to idea/testData/intentions/reconstructTypeInCastOrIs/.intention diff --git a/idea/testData/intentions/reconstructedType/completeGenericType.kt b/idea/testData/intentions/reconstructTypeInCastOrIs/completeGenericType.kt similarity index 100% rename from idea/testData/intentions/reconstructedType/completeGenericType.kt rename to idea/testData/intentions/reconstructTypeInCastOrIs/completeGenericType.kt diff --git a/idea/testData/intentions/reconstructedType/completeType.kt b/idea/testData/intentions/reconstructTypeInCastOrIs/completeType.kt similarity index 100% rename from idea/testData/intentions/reconstructedType/completeType.kt rename to idea/testData/intentions/reconstructTypeInCastOrIs/completeType.kt diff --git a/idea/testData/intentions/reconstructedType/errorType.kt b/idea/testData/intentions/reconstructTypeInCastOrIs/errorType.kt similarity index 100% rename from idea/testData/intentions/reconstructedType/errorType.kt rename to idea/testData/intentions/reconstructTypeInCastOrIs/errorType.kt diff --git a/idea/testData/intentions/reconstructedType/reconstructableType.kt b/idea/testData/intentions/reconstructTypeInCastOrIs/reconstructableType.kt similarity index 100% rename from idea/testData/intentions/reconstructedType/reconstructableType.kt rename to idea/testData/intentions/reconstructTypeInCastOrIs/reconstructableType.kt diff --git a/idea/testData/intentions/reconstructedType/reconstructableType.kt.after b/idea/testData/intentions/reconstructTypeInCastOrIs/reconstructableType.kt.after similarity index 100% rename from idea/testData/intentions/reconstructedType/reconstructableType.kt.after rename to idea/testData/intentions/reconstructTypeInCastOrIs/reconstructableType.kt.after diff --git a/idea/testData/intentions/reconstructedType/typeInDeclaration.kt b/idea/testData/intentions/reconstructTypeInCastOrIs/typeInDeclaration.kt similarity index 100% rename from idea/testData/intentions/reconstructedType/typeInDeclaration.kt rename to idea/testData/intentions/reconstructTypeInCastOrIs/typeInDeclaration.kt diff --git a/idea/tests/org/jetbrains/kotlin/idea/intentions/IntentionTestGenerated.java b/idea/tests/org/jetbrains/kotlin/idea/intentions/IntentionTestGenerated.java index 3d46d77b5a2..6afba0b33bf 100644 --- a/idea/tests/org/jetbrains/kotlin/idea/intentions/IntentionTestGenerated.java +++ b/idea/tests/org/jetbrains/kotlin/idea/intentions/IntentionTestGenerated.java @@ -4733,41 +4733,41 @@ public class IntentionTestGenerated extends AbstractIntentionTest { } } - @TestMetadata("idea/testData/intentions/reconstructedType") + @TestMetadata("idea/testData/intentions/reconstructTypeInCastOrIs") @TestDataPath("$PROJECT_ROOT") @RunWith(JUnit3RunnerWithInners.class) - public static class ReconstructedType extends AbstractIntentionTest { - public void testAllFilesPresentInReconstructedType() throws Exception { - JetTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/intentions/reconstructedType"), Pattern.compile("^(.+)\\.kt$"), true); + public static class ReconstructTypeInCastOrIs extends AbstractIntentionTest { + public void testAllFilesPresentInReconstructTypeInCastOrIs() throws Exception { + JetTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/intentions/reconstructTypeInCastOrIs"), Pattern.compile("^(.+)\\.kt$"), true); } @TestMetadata("completeGenericType.kt") public void testCompleteGenericType() throws Exception { - String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/reconstructedType/completeGenericType.kt"); + String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/reconstructTypeInCastOrIs/completeGenericType.kt"); doTest(fileName); } @TestMetadata("completeType.kt") public void testCompleteType() throws Exception { - String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/reconstructedType/completeType.kt"); + String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/reconstructTypeInCastOrIs/completeType.kt"); doTest(fileName); } @TestMetadata("errorType.kt") public void testErrorType() throws Exception { - String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/reconstructedType/errorType.kt"); + String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/reconstructTypeInCastOrIs/errorType.kt"); doTest(fileName); } @TestMetadata("reconstructableType.kt") public void testReconstructableType() throws Exception { - String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/reconstructedType/reconstructableType.kt"); + String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/reconstructTypeInCastOrIs/reconstructableType.kt"); doTest(fileName); } @TestMetadata("typeInDeclaration.kt") public void testTypeInDeclaration() throws Exception { - String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/reconstructedType/typeInDeclaration.kt"); + String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/reconstructTypeInCastOrIs/typeInDeclaration.kt"); doTest(fileName); } }