Class NotifTestExecutionResult

java.lang.Object
flexagon.ff.common.core.pojos.BasePOJO
flexagon.fd.model2.notification.pojos.NotifTestExecutionResult
All Implemented Interfaces:
Serializable

public class NotifTestExecutionResult extends BasePOJO
Represents a FlexDeploy Test Automation Framework test case result. For use within Notification Templates.
See Also:
  • Constructor Details

    • NotifTestExecutionResult

      public NotifTestExecutionResult(String pTestCaseName, String pStatus)
      Create an instance of this object from the information stored in the database.
      Parameters:
      pTestCaseName - The test case name.
      pStatus - The execution status of the test case.
  • Method Details

    • getTestCaseName

      public String getTestCaseName()
      Returns the case name for this execution.
      Returns:
      The case name for this execution.
    • getStatusEnum

      public TestRunStatus getStatusEnum()
      Returns the status of the test case execution.
      Returns:
      The status of the test case execution.
    • getStatus

      public String getStatus()
      Returns the status name of the test case execution.
      Returns:
      The status name of the test case execution.
    • isRunning

      public boolean isRunning()
      Returns whether the test case execution status is RUNNING.
      Returns:
      Whether the test case execution status is RUNNING.
    • isPassed

      public boolean isPassed()
      Returns whether the test case execution status is PASSED.
      Returns:
      Whether the test case execution status is PASSED.
    • isFailed

      public boolean isFailed()
      Returns whether the test case execution status is FAILED.
      Returns:
      Whether the test case execution status is FAILED.