mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
18 lines
430 B
Java
18 lines
430 B
Java
public class ATest extends LightCodeInsightFixtureTestCase {
|
|
|
|
public void testTestNameAsParameter() throws Exception {
|
|
doTest(getTestName(false));
|
|
}
|
|
|
|
private void doTest(String testName) throws Exception {
|
|
configureByFile("before" + testName);
|
|
}
|
|
|
|
private void configureByFile(@com.intellij.testFramework.TestDataFile String file) {
|
|
}
|
|
|
|
private String getTestName(boolean toUpperCase) {
|
|
return null;
|
|
}
|
|
}
|