Uses of Class
org.junit.runner.notification.RunListener
-
Packages that use RunListener Package Description org.junit.experimental.max org.junit.internal org.junit.runner Provides classes used to describe, collect, run and analyze multiple tests.org.junit.runner.notification Provides information about a test run. -
-
Uses of RunListener in org.junit.experimental.max
Subclasses of RunListener in org.junit.experimental.max Modifier and Type Class Description private class
MaxHistory.RememberingListener
Methods in org.junit.experimental.max that return RunListener Modifier and Type Method Description RunListener
MaxHistory. listener()
-
Uses of RunListener in org.junit.internal
Subclasses of RunListener in org.junit.internal Modifier and Type Class Description class
TextListener
-
Uses of RunListener in org.junit.runner
Subclasses of RunListener in org.junit.runner Modifier and Type Class Description private class
Result.Listener
Methods in org.junit.runner that return RunListener Modifier and Type Method Description RunListener
Result. createListener()
Internal use only.Methods in org.junit.runner with parameters of type RunListener Modifier and Type Method Description void
JUnitCore. addListener(RunListener listener)
Add a listener to be notified as the tests run.void
JUnitCore. removeListener(RunListener listener)
Remove a listener. -
Uses of RunListener in org.junit.runner.notification
Subclasses of RunListener in org.junit.runner.notification Modifier and Type Class Description (package private) class
SynchronizedRunListener
Thread-safe decorator forRunListener
implementations that synchronizes calls to the delegate.Fields in org.junit.runner.notification declared as RunListener Modifier and Type Field Description private RunListener
SynchronizedRunListener. listener
Fields in org.junit.runner.notification with type parameters of type RunListener Modifier and Type Field Description private java.util.List<RunListener>
RunNotifier.SafeNotifier. currentListeners
private java.util.List<RunListener>
RunNotifier. listeners
Methods in org.junit.runner.notification that return RunListener Modifier and Type Method Description (package private) RunListener
RunNotifier. wrapIfNotThreadSafe(RunListener listener)
Wraps the given listener withSynchronizedRunListener
if it is not annotated withRunListener.ThreadSafe
.Methods in org.junit.runner.notification with parameters of type RunListener Modifier and Type Method Description void
RunNotifier. addFirstListener(RunListener listener)
Internal use only.void
RunNotifier. addListener(RunListener listener)
Internal use onlyprotected abstract void
RunNotifier.SafeNotifier. notifyListener(RunListener each)
void
RunNotifier. removeListener(RunListener listener)
Internal use only(package private) RunListener
RunNotifier. wrapIfNotThreadSafe(RunListener listener)
Wraps the given listener withSynchronizedRunListener
if it is not annotated withRunListener.ThreadSafe
.Method parameters in org.junit.runner.notification with type arguments of type RunListener Modifier and Type Method Description private void
RunNotifier. fireTestFailures(java.util.List<RunListener> listeners, java.util.List<Failure> failures)
Constructors in org.junit.runner.notification with parameters of type RunListener Constructor Description SynchronizedRunListener(RunListener listener, java.lang.Object monitor)
Constructor parameters in org.junit.runner.notification with type arguments of type RunListener Constructor Description SafeNotifier(java.util.List<RunListener> currentListeners)
-