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() { } }