blob: 5f1a526f39a96748fbf1fbc0619cb74844668639 [file] [log] [blame]
import org.junit.*;
public class T {
private int i;
@Before
public void setUp() throws Exception {
i = 9;
}
@Test
public void test() {
}
}