Class NotifTestExecution

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

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

    • NotifTestExecution

      public NotifTestExecution(String pTestName, String pTestDescription, String pStatus, List<NotifTestExecutionResult> pNotifTestExecutionResults)
      Creates an instance of this object with the given state information.
      Parameters:
      pTestName - The name of the test for this execution
      pTestDescription - The description of the test for this execution
      pStatus - The status of the test execution.
      pNotifTestExecutionResults - A list of test execution results within this test.
  • Method Details

    • getTestName

      public String getTestName()
      Returns the name of the test for this execution.
      Returns:
      The name of the test for this execution.
    • getTestDescription

      public String getTestDescription()
      Returns the description of the test for this execution.
      Returns:
      The description of the test for this execution.
    • getStatus

      public String getStatus()
      Returns the status of the test execution.
      Returns:
      The status of the test execution.
    • getTestExecutionResults

      public List<NotifTestExecutionResult> getTestExecutionResults()
      Returns the list of individual test case results for this test execution.
      Returns:
      The list of individual test case results for this test execution.