Files
openide/plugins/devkit/devkit-java-tests/testData/referenceCollector/DoTestParameters.java
2018-04-03 19:37:58 +07:00

22 lines
494 B
Java

public class ATest extends LightCodeInsightFixtureTestCase {
public void testDoTestParameters() throws Exception {
doTest();
}
private void doTest() throws Exception {
doTest("java");
}
private void doTest(String extension) throws Exception {
configureByFile(getTestName(true) + "." + extension);
}
private void configureByFile(@com.intellij.testFramework.TestDataFile String file) {
}
private String getTestName(boolean toUpperCase) {
return null;
}
}