blob: a5288ff2319b5eb9d878cac6c0d62af9d3b50503 [file] [log] [blame]
// "Move initializer to setUp method" "true"
public class X {
<caret>int i;
@org.junit.Before
public void setUp() throws Exception {
i = 7;
}
@org.junit.Test
public void test() {
}
}