blob: 045691648e20bab9467033a9e912824fc8d3f709 [file] [log] [blame]
// "Move initializer to setUp method" "true"
package junit.framework;
public class X extends TestCase {
int i;
public void setUp() throws Exception {
super.setUp();
i = 7;
}
}
//HACK: making test possible without attaching jUnit
public abstract class TestCase {
}