Package org.testng
Interface IReporter
-
- All Superinterfaces:
ITestNGListener
- All Known Implementing Classes:
EmailableReporter
,EmailableReporter2
,ExitCodeListener
,FailedReporter
,JqReporter
,JUnitReportReporter
,Main
,SuiteHTMLReporter
,XMLReporter
public interface IReporter extends ITestNGListener
This interface can be implemented by clients to generate a report. Its method generateReport() will be invoked after all the suite have run and the parameters give all the test results that happened during that run.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
generateReport(java.util.List<XmlSuite> xmlSuites, java.util.List<ISuite> suites, java.lang.String outputDirectory)
Generate a report for the given suites into the specified output directory.
-