mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 00:40:28 +07:00
20 lines
293 B
Java
20 lines
293 B
Java
import junit.framework.TestCase;
|
|
|
|
class Base extends TestCase {
|
|
public void setUp() {
|
|
super.setUp();
|
|
}
|
|
}
|
|
|
|
public class T extends Base {
|
|
private int i;
|
|
|
|
public void setUp() throws Exception {
|
|
super.setUp();
|
|
i = 9;
|
|
}
|
|
|
|
public void test() {
|
|
}
|
|
}
|