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. -
-
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 entry)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.
-