Class TestFeedPrintingListener
- java.lang.Object
-
- org.junit.platform.console.output.TestFeedPrintingListener
-
- All Implemented Interfaces:
DetailsPrintingListener,TestExecutionListener
@API(status=INTERNAL, since="1.14") public class TestFeedPrintingListener extends java.lang.Object implements DetailsPrintingListener
-
-
Field Summary
Fields Modifier and Type Field Description private ColorPalettecolorPaletteprivate static java.lang.StringINDENTATIONprivate java.io.PrintWriteroutprivate static java.lang.StringSTATUS_SEPARATORprivate TestPlantestPlan-
Fields inherited from interface org.junit.platform.console.output.DetailsPrintingListener
LINE_START_PATTERN
-
-
Constructor Summary
Constructors Constructor Description TestFeedPrintingListener(java.io.PrintWriter out, ColorPalette colorPalette)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description private java.util.List<java.lang.String>collectDisplayNames(UniqueId uniqueId)voidexecutionFinished(TestIdentifier testIdentifier, TestExecutionResult testExecutionResult)Called when the execution of a leaf or subtree of theTestPlanhas finished, regardless of the outcome.voidexecutionSkipped(TestIdentifier testIdentifier, java.lang.String reason)Called when the execution of a leaf or subtree of theTestPlanhas been skipped.voidexecutionStarted(TestIdentifier testIdentifier)Called when the execution of a leaf or subtree of theTestPlanis about to be started.private java.lang.StringformatTestIdentifier(TestIdentifier testIdentifier)private static java.lang.Stringindented(java.lang.String message)voidlistTests(TestPlan testPlan)private voidprintln(Style style, java.lang.String message)private static booleanshouldPrint(TestIdentifier testIdentifier)voidtestPlanExecutionFinished(TestPlan testPlan)Called when the execution of theTestPlanhas finished, after all tests have been executed.voidtestPlanExecutionStarted(TestPlan testPlan)Called when the execution of theTestPlanhas started, before any test has been executed.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.junit.platform.launcher.TestExecutionListener
dynamicTestRegistered, fileEntryPublished, reportingEntryPublished
-
-
-
-
Field Detail
-
INDENTATION
private static final java.lang.String INDENTATION
- See Also:
- Constant Field Values
-
STATUS_SEPARATOR
private static final java.lang.String STATUS_SEPARATOR
- See Also:
- Constant Field Values
-
out
private final java.io.PrintWriter out
-
colorPalette
private final ColorPalette colorPalette
-
testPlan
private TestPlan testPlan
-
-
Constructor Detail
-
TestFeedPrintingListener
public TestFeedPrintingListener(java.io.PrintWriter out, ColorPalette colorPalette)
-
-
Method Detail
-
testPlanExecutionStarted
public void testPlanExecutionStarted(TestPlan testPlan)
Description copied from interface:TestExecutionListenerCalled when the execution of theTestPlanhas started, before any test has been executed.Called from the same thread as
TestExecutionListener.testPlanExecutionFinished(TestPlan).- Specified by:
testPlanExecutionStartedin interfaceTestExecutionListener- Parameters:
testPlan- describes the tree of tests about to be executed
-
testPlanExecutionFinished
public void testPlanExecutionFinished(TestPlan testPlan)
Description copied from interface:TestExecutionListenerCalled when the execution of theTestPlanhas finished, after all tests have been executed.Called from the same thread as
TestExecutionListener.testPlanExecutionStarted(TestPlan).- Specified by:
testPlanExecutionFinishedin interfaceTestExecutionListener- Parameters:
testPlan- describes the tree of tests that have been executed
-
executionSkipped
public void executionSkipped(TestIdentifier testIdentifier, java.lang.String reason)
Description copied from interface:TestExecutionListenerCalled when the execution of a leaf or subtree of theTestPlanhas been skipped.The
TestIdentifiermay represent a test or a container. In the case of a container, no listener methods will be called for any of its descendants.A skipped test or subtree of tests will never be reported as started or finished.
- Specified by:
executionSkippedin interfaceTestExecutionListener- Parameters:
testIdentifier- the identifier of the skipped test or containerreason- a human-readable message describing why the execution has been skipped
-
executionStarted
public void executionStarted(TestIdentifier testIdentifier)
Description copied from interface:TestExecutionListenerCalled when the execution of a leaf or subtree of theTestPlanis about to be started.The
TestIdentifiermay represent a test or a container.This method will only be called if the test or container has not been skipped.
This method will be called for a container
TestIdentifierbefore starting or skipping any of its children.- Specified by:
executionStartedin interfaceTestExecutionListener- Parameters:
testIdentifier- the identifier of the started test or container
-
executionFinished
public void executionFinished(TestIdentifier testIdentifier, TestExecutionResult testExecutionResult)
Description copied from interface:TestExecutionListenerCalled when the execution of a leaf or subtree of theTestPlanhas finished, regardless of the outcome.The
TestIdentifiermay represent a test or a container.This method will only be called if the test or container has not been skipped.
This method will be called for a container
TestIdentifierafter all of its children have been skipped or have finished.The
TestExecutionResultdescribes the result of the execution for the suppliedTestIdentifier. The result does not include or aggregate the results of its children. For example, a container with a failing test will be reported asSUCCESSFULeven if one or more of its children are reported asFAILED.- Specified by:
executionFinishedin interfaceTestExecutionListener- Parameters:
testIdentifier- the identifier of the finished test or containertestExecutionResult- the (unaggregated) result of the execution for the suppliedTestIdentifier- See Also:
TestExecutionResult
-
formatTestIdentifier
private java.lang.String formatTestIdentifier(TestIdentifier testIdentifier)
-
println
private void println(Style style, java.lang.String message)
-
collectDisplayNames
private java.util.List<java.lang.String> collectDisplayNames(UniqueId uniqueId)
-
indented
private static java.lang.String indented(java.lang.String message)
-
listTests
public void listTests(TestPlan testPlan)
- Specified by:
listTestsin interfaceDetailsPrintingListener
-
shouldPrint
private static boolean shouldPrint(TestIdentifier testIdentifier)
-
-