blob: 9ad0a3ffd02b1b084a9b1ebb01e7e6c10bea19cd [file] [log] [blame]
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() {
}
}