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