Package org.testng.reporters
Class SuiteHTMLReporter
- java.lang.Object
-
- org.testng.reporters.SuiteHTMLReporter
-
- All Implemented Interfaces:
IReporter
,ITestNGListener
public class SuiteHTMLReporter extends Object implements IReporter
This class implements an HTML reporter for suites.- Author:
- cbeust, Alexandru Popescu
-
-
Field Summary
Fields Modifier and Type Field Description static String
AFTER
Generate information about the methods that were runstatic String
BEFORE
static String
CLASSES
static String
GROUPS
static String
METHODS_ALPHABETICAL
static String
METHODS_CHRONOLOGICAL
static String
METHODS_NOT_RUN
static String
REPORTER_OUTPUT
static String
TESTNG_XML
-
Constructor Summary
Constructors Constructor Description SuiteHTMLReporter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected String
generateOutputDirectoryName(String outputDirectory)
Overridable by subclasses to create different directory names (e.g.void
generateReport(List<XmlSuite> xmlSuites, List<ISuite> suites, String outputDirectory)
Generate a report for the given suites into the specified output directory.
-
-
-
Field Detail
-
METHODS_CHRONOLOGICAL
public static final String METHODS_CHRONOLOGICAL
- See Also:
- Constant Field Values
-
METHODS_ALPHABETICAL
public static final String METHODS_ALPHABETICAL
- See Also:
- Constant Field Values
-
GROUPS
public static final String GROUPS
- See Also:
- Constant Field Values
-
CLASSES
public static final String CLASSES
- See Also:
- Constant Field Values
-
REPORTER_OUTPUT
public static final String REPORTER_OUTPUT
- See Also:
- Constant Field Values
-
METHODS_NOT_RUN
public static final String METHODS_NOT_RUN
- See Also:
- Constant Field Values
-
TESTNG_XML
public static final String TESTNG_XML
- See Also:
- Constant Field Values
-
AFTER
public static final String AFTER
Generate information about the methods that were run- See Also:
- Constant Field Values
-
BEFORE
public static final String BEFORE
- See Also:
- Constant Field Values
-
-
Method Detail
-
generateReport
public void generateReport(List<XmlSuite> xmlSuites, List<ISuite> suites, String outputDirectory)
Description copied from interface:IReporter
Generate a report for the given suites into the specified output directory.- Specified by:
generateReport
in interfaceIReporter
-
-