mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
9 lines
136 B
Java
9 lines
136 B
Java
import junit.framework.TestCase;
|
|
public class T extends TestCase {
|
|
private int i;
|
|
|
|
public void setUp() {
|
|
i = 9;
|
|
}
|
|
}
|