Uses of Class
org.junit.platform.engine.reporting.ReportEntry
-
Packages that use ReportEntry Package Description org.junit.platform.console.output Output printing utility classes of JUnit's console launcher.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 theLauncherincluding theLauncherFactoryand theLauncherDiscoveryRequestBuilder.org.junit.platform.runner Runnerand 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 aTestEnginerunning on the JUnit Platform. -
-
Uses of ReportEntry in org.junit.platform.console.output
Fields in org.junit.platform.console.output with type parameters of type ReportEntry Modifier and Type Field Description (package private) java.util.Queue<ReportEntry>TreeNode. reportsMethods in org.junit.platform.console.output with parameters of type ReportEntry Modifier and Type Method Description (package private) TreeNodeTreeNode. addReportEntry(ReportEntry reportEntry)private voidTreePrinter. printReportEntry(java.lang.String indent, ReportEntry reportEntry)voidFlatPrintingListener. reportingEntryPublished(TestIdentifier testIdentifier, ReportEntry entry)voidTreePrintingListener. reportingEntryPublished(TestIdentifier testIdentifier, ReportEntry entry)voidVerboseTreePrintingListener. reportingEntryPublished(TestIdentifier testIdentifier, ReportEntry entry) -
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 voidEngineExecutionListener. reportingEntryPublished(TestDescriptor testDescriptor, ReportEntry reportEntry)Can be called for anyTestDescriptorin order to publish additional information to the reporting infrastructure — for example: Output that would otherwise go toSystem.outInformation 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 ReportEntryReportEntry. from(java.lang.String key, java.lang.String value)Factory for creating a newReportEntryfrom a key-value pair.static ReportEntryReportEntry. from(java.util.Map<java.lang.String,java.lang.String> keyValuePairs)Factory for creating a newReportEntryfrom 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 voidTestExecutionListener. 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. reporterMethods in org.junit.platform.launcher.core with parameters of type ReportEntry Modifier and Type Method Description voidCompositeEngineExecutionListener. reportingEntryPublished(TestDescriptor testDescriptor, ReportEntry entry)voidCompositeTestExecutionListener. reportingEntryPublished(TestIdentifier testIdentifier, ReportEntry entry)voidDelegatingEngineExecutionListener. reportingEntryPublished(TestDescriptor testDescriptor, ReportEntry entry)voidExecutionListenerAdapter. reportingEntryPublished(TestDescriptor testDescriptor, 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.runner
Methods in org.junit.platform.runner with parameters of type ReportEntry Modifier and Type Method Description voidJUnitPlatformRunnerListener. 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 EventEvent. reportingEntryPublished(TestDescriptor testDescriptor, ReportEntry entry)voidExecutionRecorder. reportingEntryPublished(TestDescriptor testDescriptor, ReportEntry entry)Record anEventfor a publishedReportEntry.
-