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.launcher Public API for configuring and launching test plans.org.junit.platform.launcher.core Core support classes for theLauncher
including theLauncherFactory
and theLauncherDiscoveryRequestBuilder
.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.runner Runner
and annotations for configuring and executing tests on the JUnit Platform in a JUnit 4 environment.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 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(java.lang.String key, java.lang.String value)
Factory for creating a newReportEntry
from a key-value pair.static ReportEntry
ReportEntry. from(java.util.Map<java.lang.String,java.lang.String> keyValuePairs)
Factory for creating a newReportEntry
from a map of key-value pairs. -
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.launcher.core
Fields in org.junit.platform.launcher.core with type parameters of type ReportEntry Modifier and Type Field Description private java.util.function.BiConsumer<TestIdentifier,ReportEntry>
StreamInterceptingTestExecutionListener. reporter
Methods in org.junit.platform.launcher.core with parameters of type ReportEntry Modifier and Type Method Description void
DelegatingEngineExecutionListener. reportingEntryPublished(TestDescriptor testDescriptor, ReportEntry entry)
void
ExecutionListenerAdapter. reportingEntryPublished(TestDescriptor testDescriptor, ReportEntry entry)
void
TestExecutionListenerRegistry.CompositeTestExecutionListener. reportingEntryPublished(TestIdentifier testIdentifier, ReportEntry entry)
Method parameters in org.junit.platform.launcher.core with type arguments of type ReportEntry Modifier and Type Method Description (package private) static java.util.Optional<StreamInterceptingTestExecutionListener>
StreamInterceptingTestExecutionListener. create(ConfigurationParameters configurationParameters, java.util.function.BiConsumer<TestIdentifier,ReportEntry> reporter)
Constructor parameters in org.junit.platform.launcher.core with type arguments of type ReportEntry Constructor Description StreamInterceptingTestExecutionListener(java.util.Optional<StreamInterceptor> stdoutInterceptor, java.util.Optional<StreamInterceptor> stderrInterceptor, java.util.function.BiConsumer<TestIdentifier,ReportEntry> reporter)
-
Uses of ReportEntry in org.junit.platform.reporting.legacy.xml
Fields in org.junit.platform.reporting.legacy.xml with type parameters of type ReportEntry Modifier and Type Field Description private java.util.Map<TestIdentifier,java.util.List<ReportEntry>>
XmlReportData. reportEntries
Methods in org.junit.platform.reporting.legacy.xml that return types with arguments of type ReportEntry Modifier and Type Method Description (package private) java.util.List<ReportEntry>
XmlReportData. getReportEntries(TestIdentifier testIdentifier)
Methods in org.junit.platform.reporting.legacy.xml with parameters of type ReportEntry Modifier and Type Method Description (package private) void
XmlReportData. addReportEntry(TestIdentifier testIdentifier, ReportEntry entry)
void
LegacyXmlReportGeneratingListener. reportingEntryPublished(TestIdentifier testIdentifier, ReportEntry entry)
-
Uses of ReportEntry in org.junit.platform.runner
Methods in org.junit.platform.runner with parameters of type ReportEntry Modifier and Type Method Description void
JUnitPlatformRunnerListener. 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
.
-