Class TestRunFinished


  • public class TestRunFinished
    extends Object
    • Constructor Detail

      • TestRunFinished

        public TestRunFinished()
        No args constructor for use in serialization
      • TestRunFinished

        public TestRunFinished​(String message,
                               Boolean success,
                               Timestamp timestamp)
        Parameters:
        success -
        message -
        timestamp -
    • Method Detail

      • getMessage

        public String getMessage()
        Error message. Can be a stack trace from a failed `BeforeAll` or `AfterAll`. If there are undefined parameter types, the message is simply "The following parameter type(s() are not defined: xxx, yyy". The independent `UndefinedParameterType` messages can be used to generate snippets for those parameter types.
      • setMessage

        public void setMessage​(String message)
        Error message. Can be a stack trace from a failed `BeforeAll` or `AfterAll`. If there are undefined parameter types, the message is simply "The following parameter type(s() are not defined: xxx, yyy". The independent `UndefinedParameterType` messages can be used to generate snippets for those parameter types.
      • getSuccess

        public Boolean getSuccess()
        success = StrictModeEnabled ? (failed_count == 0 && ambiguous_count == 0 && undefined_count == 0 && pending_count == 0) : (failed_count == 0 && ambiguous_count == 0) (Required)
      • setSuccess

        public void setSuccess​(Boolean success)
        success = StrictModeEnabled ? (failed_count == 0 && ambiguous_count == 0 && undefined_count == 0 && pending_count == 0) : (failed_count == 0 && ambiguous_count == 0) (Required)
      • getTimestamp

        public Timestamp getTimestamp()
        (Required)
      • setTimestamp

        public void setTimestamp​(Timestamp timestamp)
        (Required)
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object