blob: 3ff07dd7edb40e367199ffdc4649eaa4a0a02285 [file] [log] [blame]
import junit.framework.TestCase;
public class T extends TestCase {
private int i;
public void setUp() throws Exception {
super.setUp();
i = 9;
}
public void test() {
}
}