mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-12 04:36:59 +07:00
24 lines
515 B
Java
24 lines
515 B
Java
abstract class AbstractClass extends LightCodeInsightFixtureTestCase {
|
|
public void assertResolvesTo() {
|
|
doTest();
|
|
}
|
|
|
|
protected abstract void doTest();
|
|
}
|
|
|
|
class ATest extends AbstractClass {
|
|
public void testAbstractMethod() {
|
|
assertResolvesTo();
|
|
}
|
|
|
|
protected void doTest() {
|
|
configureByFile(getTestName(true) + ".java");
|
|
}
|
|
|
|
private void configureByFile(@com.intellij.testFramework.TestDataFile String file) {
|
|
}
|
|
|
|
private String getTestName(boolean toUpperCase) {
|
|
return null;
|
|
}
|
|
} |