Class TestHTMLReporter

    • Constructor Detail

      • TestHTMLReporter

        public TestHTMLReporter()
    • Method Detail

      • onStart

        public void onStart​(ITestContext context)
        Description copied from interface: ITestListener
        Invoked before running all the test methods belonging to the classes inside the <test> tag and calling all their Configuration methods.
        Specified by:
        onStart in interface ITestListener
        Parameters:
        context - The test context
      • onFinish

        public void onFinish​(ITestContext context)
        Description copied from interface: ITestListener
        Invoked after all the test methods belonging to the classes inside the <test> tag have run and all their Configuration methods have been called.
        Specified by:
        onFinish in interface ITestListener
        Parameters:
        context - The test context
      • generateTable

        public static void generateTable​(java.io.PrintWriter pw,
                                         java.lang.String title,
                                         java.util.Collection<ITestResult> tests,
                                         java.lang.String cssClass,
                                         java.util.Comparator<ITestResult> comparator)
      • generateLog

        public static void generateLog​(ITestContext testContext,
                                       java.lang.String host,
                                       java.lang.String outputDirectory,
                                       java.util.Collection<ITestResult> failedConfs,
                                       java.util.Collection<ITestResult> skippedConfs,
                                       java.util.Collection<ITestResult> passedTests,
                                       java.util.Collection<ITestResult> failedTests,
                                       java.util.Collection<ITestResult> skippedTests,
                                       java.util.Collection<ITestResult> percentageTests)