Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/moveInitializerToSetUp/beforeTestNG.java
Anna Kozlova 9789b5b05d [tests] don't start test framework checks if framework is not attached (IDEA-285422)
GitOrigin-RevId: d356f61463159b8bbace12bc35a598e3211bfff0
2021-12-22 21:20:26 +00:00

9 lines
144 B
Java

// "Move initializer to setUp method" "false"
public class X {
<caret>int i = 7;
@org.testng.annotations.Test
public void test() {
}
}