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.- Author:
- cbeust Feb 17, 2006
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
generateReport(List<XmlSuite> xmlSuites, List<ISuite> suites, String outputDirectory)
Generate a report for the given suites into the specified output directory.
-