import org.junit.*; public class T { private int i; @Test public void test() { } @Before public void setUp() throws Exception { i = 9; } }