mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
13 lines
158 B
Java
13 lines
158 B
Java
import org.junit.*;
|
|
public class T {
|
|
private int i;
|
|
|
|
@Test
|
|
public void test() {
|
|
}
|
|
|
|
@Before
|
|
public void setUp(){
|
|
i = 9;
|
|
}
|
|
} |