Files
openide/java/java-tests/testData/refactoring/introduceField/afterBeforeNotExist.java

13 lines
176 B
Java

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