mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
14 lines
204 B
Java
14 lines
204 B
Java
import org.junit.Before;
|
|
import org.junit.Test;
|
|
public class T {
|
|
private int i;
|
|
|
|
@Before
|
|
public void setUp() throws Exception {
|
|
i = 9;
|
|
}
|
|
|
|
@Test
|
|
public void test() {
|
|
}
|
|
} |