org.junit.platform.engine.reporting.ReportEntry Java Examples

The following examples show how to use org.junit.platform.engine.reporting.ReportEntry. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: EngineExecutionTestListener.java    From ArchUnit with Apache License 2.0 4 votes vote down vote up
@Override
public void reportingEntryPublished(TestDescriptor testDescriptor, ReportEntry entry) {
}
 
Example #2
Source File: FlatPrintingTestListener.java    From sbt-jupiter-interface with Apache License 2.0 2 votes vote down vote up
@Override
public void reportingEntryPublished(TestIdentifier testIdentifier, ReportEntry entry) {

}
 
Example #3
Source File: TreePrintingTestListener.java    From sbt-jupiter-interface with Apache License 2.0 2 votes vote down vote up
@Override
public void reportingEntryPublished(TestIdentifier testIdentifier, ReportEntry entry) {

}
 
Example #4
Source File: JupiterExecutionListener.java    From junit5-docker with Apache License 2.0 2 votes vote down vote up
@Override
public void reportingEntryPublished(TestDescriptor testDescriptor, ReportEntry reportEntry) {

}
 
Example #5
Source File: TestClassExecutor.java    From webtester2-core with Apache License 2.0 2 votes vote down vote up
@Override
public void reportingEntryPublished(TestDescriptor testDescriptor, ReportEntry entry) {

}