junit: check for junit classes available in scope before proceeding with costly checks (SCL-16058)

GitOrigin-RevId: 34f3dda8a83aada3c78c9888aa995d010af2a62a
This commit is contained in:
Anna Kozlova
2019-08-15 16:46:22 +02:00
committed by intellij-monorepo-bot
parent 664f90b67e
commit 54eb66996d
8 changed files with 54 additions and 3 deletions

View File

@@ -1,8 +1,10 @@
import org.junit.Before;
// "Move initializer to setUp method" "true"
public class X {
<caret>int i;
@org.junit.Before
@Before
public void setUp() throws Exception {
i = 7;
}