We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 497e6ca commit 573828cCopy full SHA for 573828c
src/test/java/org/junit/tests/AllTests.java
@@ -5,6 +5,8 @@
5
import org.junit.internal.MethodSorterTest;
6
import org.junit.internal.matchers.StacktracePrintingMatcherTest;
7
import org.junit.runner.RunWith;
8
+import org.junit.runner.notification.RunNotifierTest;
9
+import org.junit.runner.notification.ConcurrentRunNotifierTest;
10
import org.junit.runners.Suite;
11
import org.junit.runners.Suite.SuiteClasses;
12
import org.junit.tests.assertion.AssertionTest;
@@ -166,7 +168,9 @@
166
168
MethodSorterTest.class,
167
169
TestedOnSupplierTest.class,
170
StacktracePrintingMatcherTest.class,
- StopwatchTest.class
171
+ StopwatchTest.class,
172
+ RunNotifierTest.class,
173
+ ConcurrentRunNotifierTest.class
174
})
175
public class AllTests {
176
public static Test suite() {
0 commit comments