Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/moveInitializerToSetUp/afterJUnit4WithBeforeOnly.java

11 lines
161 B
Java

// "Move initializer to setUp method" "true"
public class X {
int i;
@org.junit.Before
public void setUp() throws Exception {
i = 7;
}
}