Class TestOutputReportEntry

    • Field Detail

      • log

        private final java.lang.String log
      • isStdOut

        private final boolean isStdOut
      • newLine

        private final boolean newLine
      • runMode

        private final RunMode runMode
      • testRunId

        private final java.lang.Long testRunId
    • Constructor Detail

      • TestOutputReportEntry

        public TestOutputReportEntry​(java.lang.String log,
                                     boolean isStdOut,
                                     boolean newLine,
                                     RunMode runMode,
                                     java.lang.Long testRunId)
        Wraps the output from the running test-case.
        Parameters:
        log - stdout/sterr output from running tests
        isStdOut - Indicates if this is stdout
        newLine - print on new line
        runMode - the phase of testset
        testRunId - unique id of the test run pointing to the test description
      • TestOutputReportEntry

        private TestOutputReportEntry​(java.lang.String log,
                                      boolean isStdOut,
                                      boolean newLine)
        Wraps the output from the running test-case.
        Parameters:
        log - stdout/sterr output from running tests
        isStdOut - Indicates if this is stdout
        newLine - print on new line
      • TestOutputReportEntry

        public TestOutputReportEntry​(OutputReportEntry reportEntry,
                                     RunMode runMode,
                                     java.lang.Long testRunId)