mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
test++
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import junit.framework.TestCase;
|
||||
|
||||
class Base extends TestCase {
|
||||
public void setUp() {
|
||||
super.setUp();
|
||||
}
|
||||
}
|
||||
|
||||
public class T extends Base {
|
||||
private int i;
|
||||
|
||||
public void test() {
|
||||
}
|
||||
|
||||
public void setUp() throws Exception {
|
||||
super.setUp();
|
||||
i = 9;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user