Uses of Class
org.junit.platform.engine.reporting.ReportEntry
-
Packages that use ReportEntry Package Description org.junit.platform.engine Public API for test engines.org.junit.platform.engine.reporting Classes used by test engines to report additional data to execution listeners.org.junit.platform.jfr Java Flight Recorder support package.org.junit.platform.launcher Public API for configuring and launching test plans.org.junit.platform.reporting.legacy.xml Support for generating XML reports using a format which is compatible with the de facto standard for JUnit 4 based test reports that was made popular by the Ant build system.org.junit.platform.testkit.engine Test Kit for testing the execution of aTestEngine
running on the JUnit Platform. -
-
Uses of ReportEntry in org.junit.platform.engine
Methods in org.junit.platform.engine with parameters of type ReportEntry Modifier and Type Method Description default void
EngineExecutionListener. reportingEntryPublished(TestDescriptor testDescriptor, ReportEntry entry)
Can be called for anyTestDescriptor
in order to publish additional information to the reporting infrastructure — for example: Output that would otherwise go toSystem.out
Information about test context or test data -
Uses of ReportEntry in org.junit.platform.engine.reporting
Methods in org.junit.platform.engine.reporting that return ReportEntry Modifier and Type Method Description static ReportEntry
ReportEntry. from(String key, String value)
Factory for creating a newReportEntry
from a key-value pair.static ReportEntry
ReportEntry. from(Map<String,String> keyValuePairs)
Factory for creating a newReportEntry
from a map of key-value pairs. -
Uses of ReportEntry in org.junit.platform.jfr
Methods in org.junit.platform.jfr with parameters of type ReportEntry Modifier and Type Method Description void
FlightRecordingListener. reportingEntryPublished(TestIdentifier test, ReportEntry reportEntry)
-
Uses of ReportEntry in org.junit.platform.launcher
Methods in org.junit.platform.launcher with parameters of type ReportEntry Modifier and Type Method Description default void
TestExecutionListener. reportingEntryPublished(TestIdentifier testIdentifier, ReportEntry entry)
Called when additional test reporting data has been published for the suppliedTestIdentifier
. -
Uses of ReportEntry in org.junit.platform.reporting.legacy.xml
Methods in org.junit.platform.reporting.legacy.xml with parameters of type ReportEntry Modifier and Type Method Description void
LegacyXmlReportGeneratingListener. reportingEntryPublished(TestIdentifier testIdentifier, ReportEntry entry)
-
Uses of ReportEntry in org.junit.platform.testkit.engine
Methods in org.junit.platform.testkit.engine with parameters of type ReportEntry Modifier and Type Method Description static Event
Event. reportingEntryPublished(TestDescriptor testDescriptor, ReportEntry entry)
void
ExecutionRecorder. reportingEntryPublished(TestDescriptor testDescriptor, ReportEntry entry)
Record anEvent
for a publishedReportEntry
.
-