summaryrefslogtreecommitdiff
path: root/plugins/devkit/devkit-java-tests/testData/referenceCollector/TestMetadataDataNoTopLevel.java
blob: 16750a92ed3eebfee30c0b68b18b4bb3679445e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
public class ATest extends LightCodeInsightFixtureTestCase {

  @com.intellij.testFramework.TestDataPath("$CONTENT_ROOT")
  @org.jetbrains.kotlin.test.TestMetadata("testData/refactoring/introduceVariable")
  public static class IntroduceVariable 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/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");
      }
    }
  }

}