projects
/
idea
/
community.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
junit: skip inner classes for known runners in test detection (IDEA-185621)
[idea/community.git]
/
java
/
java-tests
/
testData
/
junit
/
configurations
/
module1
/
test1
/
nested
/
TestWithJunit4.java
1
package test1.nested;
2
3
@org.junit.runner.RunWith(org.junit.runners.Parameterized.class)
4
public class TestWithJunit4 {
5
@org.junit.Test
6
public void test1() {}
7
8
public static class InnerNoTests {}
9
}