Class NotifTestExecution
java.lang.Object
flexagon.ff.common.core.pojos.BasePOJO
flexagon.fd.model2.notification.pojos.NotifTestExecution
- All Implemented Interfaces:
Serializable
Represents a FlexDeploy Test Automation Framework test case result. For use within Notification
Templates.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNotifTestExecution(String pTestName, String pTestDescription, String pStatus, List<NotifTestExecutionResult> pNotifTestExecutionResults) Creates an instance of this object with the given state information. -
Method Summary
Modifier and TypeMethodDescriptionReturns the status of the test execution.Returns the description of the test for this execution.Returns the list of individual test case results for this test execution.Returns the name of the test for this execution.
-
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 executionpTestDescription- The description of the test for this executionpStatus- The status of the test execution.pNotifTestExecutionResults- A list of test execution results within this test.
-
-
Method Details
-
getTestName
Returns the name of the test for this execution.- Returns:
- The name of the test for this execution.
-
getTestDescription
Returns the description of the test for this execution.- Returns:
- The description of the test for this execution.
-
getStatus
Returns the status of the test execution.- Returns:
- The status of the test execution.
-
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.
-