Interface FailedTestOutputBean

  • All Known Implementing Classes:
    FailedTestOutputBeanImpl

    public interface FailedTestOutputBean
    Represents the set of a test failure info
    • Method Detail

      • getStdOutput

        String getStdOutput()
        All text that was printed to stdout by the test
        Returns:
        test stdout
      • getErrOutput

        String getErrOutput()
        All text that was printed to stderr by the test
        Returns:
        test stderr
      • getStacktrace

        String getStacktrace()
        Test failure exception presented as string
        Returns:
        exception string
      • getStacktraceMessage

        String getStacktraceMessage()
        Returns exception message
        Returns:
        exception message
      • getCombinedOutput

        String getCombinedOutput()
        Presents test failure info in human readable way. Merges stacktrace, std out, std error
        Returns:
        stacktrace, std out, std error combined to a single string with headers and new lines.