Class NotifTestExecutionResult
java.lang.Object
flexagon.ff.common.core.pojos.BasePOJO
flexagon.fd.model2.notification.pojos.NotifTestExecutionResult
- All Implemented Interfaces:
Serializable
Represents a FlexDeploy Test Automation Framework test case result. For use within Notification
Templates.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNotifTestExecutionResult(String pTestCaseName, String pStatus) Create an instance of this object from the information stored in the database. -
Method Summary
Modifier and TypeMethodDescriptionReturns the status name of the test case execution.Returns the status of the test case execution.Returns the case name for this execution.booleanisFailed()Returns whether the test case execution status is FAILED.booleanisPassed()Returns whether the test case execution status is PASSED.booleanReturns whether the test case execution status is RUNNING.
-
Constructor Details
-
NotifTestExecutionResult
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
Returns the case name for this execution.- Returns:
- The case name for this execution.
-
getStatusEnum
Returns the status of the test case execution.- Returns:
- The status of the test case execution.
-
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.
-