mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 10:48:09 +07:00
[devkit] Support Nest-nested classes with Kotlin TestMetadata annotation for test data navigation (IDEA-272789)
GitOrigin-RevId: 46f841f142a933c6a4f0f455fb23b2da886015de
This commit is contained in:
committed by
intellij-monorepo-bot
parent
656119ca76
commit
868e8c3494
@@ -12,6 +12,18 @@ public class ATest extends LightCodeInsightFixtureTestCase {
|
||||
public void testAnonymousType() throws Exception {
|
||||
runTest("testData/refactoring/introduceVariable/AnonymousType.kt");
|
||||
}
|
||||
|
||||
@org.jetbrains.kotlin.test.TestMetadata("testData/refactoring/introduceVariable/extra")
|
||||
public static class IntroduceExtraVariable extends ATest {
|
||||
private void runTest(String testDataFilePath) throws Exception {
|
||||
|
||||
}
|
||||
|
||||
@org.jetbrains.kotlin.test.TestMetadata("AnonymousType.kt")
|
||||
public void testAnonymousType() throws Exception {
|
||||
runTest("testData/refactoring/introduceVariable/extra/AnonymousType.kt");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@org.jetbrains.kotlin.test.TestMetadata("introduceVariable/SomeType.kt")
|
||||
|
||||
Reference in New Issue
Block a user