Uses of Interface
org.apache.maven.surefire.report.ConsoleOutputReceiver
-
-
Uses of ConsoleOutputReceiver in org.apache.maven.plugin.surefire.booterclient.output
Methods in org.apache.maven.plugin.surefire.booterclient.output that return ConsoleOutputReceiver Modifier and Type Method Description private ConsoleOutputReceiver
ForkClient. getOrCreateConsoleOutputReceiver()
-
Uses of ConsoleOutputReceiver in org.apache.maven.plugin.surefire.report
Subinterfaces of ConsoleOutputReceiver in org.apache.maven.plugin.surefire.report Modifier and Type Interface Description interface
TestcycleConsoleOutputReceiver
Classes in org.apache.maven.plugin.surefire.report that implement ConsoleOutputReceiver Modifier and Type Class Description class
ConsoleOutputFileReporter
Surefire output consumer proxy that writes test output to aFile
for each test suite.class
DirectConsoleOutput
Outputs test system out/system err directly to the console
Just a step on the road to getting the separation of reporting concerns operating properly.class
NullConsoleOutputReceiver
TestcycleConsoleOutputReceiver doing nothing rather than using null.class
TestSetRunListener
Reports data for a single test set. -
Uses of ConsoleOutputReceiver in org.apache.maven.surefire.booter
Classes in org.apache.maven.surefire.booter that implement ConsoleOutputReceiver Modifier and Type Class Description class
ForkingRunListener
Encodes the full output of the test run to the stdout stream. -
Uses of ConsoleOutputReceiver in org.apache.maven.surefire.junitcore
Classes in org.apache.maven.surefire.junitcore that implement ConsoleOutputReceiver Modifier and Type Class Description class
ClassesParallelRunListener
class
ConcurrentRunListener
Handles responses from concurrent junit
Stuff to remember about JUnit threading: parallel=classes; beforeClass/afterClass, constructor and all tests method run on same thread parallel=methods; beforeClass/afterClass run on main thread, constructor + each test method run on same thread parallel=both; same as parallel=methodsclass
MethodsParallelRunListener
class
NonConcurrentRunListener
A class to be used when there is no JUnit parallelism (methods or/and class).(package private) class
TestMethod
Represents the test-state of a single test method that is run.Methods in org.apache.maven.surefire.junitcore with parameters of type ConsoleOutputReceiver Modifier and Type Method Description (package private) void
LogicalStream. writeDetails(ConsoleOutputReceiver outputReceiver)
-
Uses of ConsoleOutputReceiver in org.apache.maven.surefire.report
Fields in org.apache.maven.surefire.report declared as ConsoleOutputReceiver Modifier and Type Field Description private ConsoleOutputReceiver
ConsoleOutputCapture.ForwardingPrintStream. target
Fields in org.apache.maven.surefire.report with type parameters of type ConsoleOutputReceiver Modifier and Type Field Description private static java.lang.ThreadLocal<ConsoleOutputReceiver>
ConsoleOutputReceiverForCurrentThread. CURRENT
Methods in org.apache.maven.surefire.report that return ConsoleOutputReceiver Modifier and Type Method Description static ConsoleOutputReceiver
ConsoleOutputReceiverForCurrentThread. get()
Methods in org.apache.maven.surefire.report with parameters of type ConsoleOutputReceiver Modifier and Type Method Description static void
ConsoleOutputReceiverForCurrentThread. set(ConsoleOutputReceiver consoleOutputReceiver)
static void
ConsoleOutputCapture. startCapture(ConsoleOutputReceiver target)
Constructors in org.apache.maven.surefire.report with parameters of type ConsoleOutputReceiver Constructor Description ForwardingPrintStream(boolean stdout, ConsoleOutputReceiver target)
-