#KT-9938 Fixed

Top level test case is added
This commit is contained in:
mcgee
2015-12-08 23:33:39 +03:00
parent da5f71773a
commit 4a0e33003b
3 changed files with 9 additions and 0 deletions
@@ -0,0 +1 @@
val x: Int = 1<caret>
@@ -0,0 +1,2 @@
val x: Int
get() = 1
@@ -3756,6 +3756,12 @@ public class IntentionTestGenerated extends AbstractIntentionTest {
String fileName = KotlinTestUtils.navigationMetadata("idea/testData/intentions/convertPropertyInitializerToGetter/semicolon.kt");
doTest(fileName);
}
@TestMetadata("topLevelDeclaration.kt")
public void testTopLevelDeclaration() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("idea/testData/intentions/convertPropertyInitializerToGetter/topLevelDeclaration.kt");
doTest(fileName);
}
}
@TestMetadata("idea/testData/intentions/convertPropertyToFunction")