Interface TestExecutionSummary

    • Method Detail

      • getTimeStarted

        long getTimeStarted()
        Get the timestamp (in milliseconds) when the test plan started.
      • getTimeFinished

        long getTimeFinished()
        Get the timestamp (in milliseconds) when the test plan finished.
      • getContainersFoundCount

        long getContainersFoundCount()
        Get the number of containers found.
      • getContainersStartedCount

        long getContainersStartedCount()
        Get the number of containers started.
      • getContainersSkippedCount

        long getContainersSkippedCount()
        Get the number of containers skipped.
      • getContainersAbortedCount

        long getContainersAbortedCount()
        Get the number of containers aborted.
      • getContainersSucceededCount

        long getContainersSucceededCount()
        Get the number of containers that succeeded.
      • getTestsFoundCount

        long getTestsFoundCount()
        Get the number of tests found.
      • getTestsStartedCount

        long getTestsStartedCount()
        Get the number of tests started.
      • getTestsSkippedCount

        long getTestsSkippedCount()
        Get the number of tests skipped.
      • getTestsAbortedCount

        long getTestsAbortedCount()
        Get the number of tests aborted.
      • getTestsSucceededCount

        long getTestsSucceededCount()
        Get the number of tests that succeeded.
      • printTo

        void printTo​(java.io.PrintWriter writer)
        Print this summary to the supplied PrintWriter.

        This method does not print failure messages.

        See Also:
        printFailuresTo(PrintWriter)
      • printFailuresTo

        void printFailuresTo​(java.io.PrintWriter writer)
        Print failed containers and tests, including sources and exception messages, to the supplied PrintWriter.
        See Also:
        printTo(PrintWriter)