Package org.apache.maven.surefire.report
Interface ReporterFactory
-
- All Known Implementing Classes:
DefaultReporterFactory
,ForkingReporterFactory
public interface ReporterFactory
Used by the providers to request (per-thread) run listeners.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RunResult
close()
Closes the factory, freeing resources allocated in the factory.RunListener
createReporter()
Creates a reporter.
-
-
-
Method Detail
-
createReporter
RunListener createReporter()
Creates a reporter.- Returns:
- A reporter instance
-
close
RunResult close()
Closes the factory, freeing resources allocated in the factory.- Returns:
- The run result
-
-