public class NotifTestResult
extends BasePOJO
| Constructor and Description |
|---|
NotifTestResult(java.lang.String pTestCaseName,
java.lang.String pStatus,
java.lang.String pMessage)
Create an instance of this object from the information stored in the database.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getMessage()
Returns the message returned from the test case execution.
|
java.lang.String |
getStatus()
Returns the status name of the test case execution.
|
TestRunStatus |
getStatusEnum()
Returns the status of the test case execution.
|
java.lang.String |
getTestCaseName()
Returns the case name for this execution.
|
boolean |
isFailed()
Returns whether the test case execution status is FAILED.
|
boolean |
isPassed()
Returns whether the test case execution status is PASSED.
|
boolean |
isRunning()
Returns whether the test case execution status is RUNNING.
|
public NotifTestResult(java.lang.String pTestCaseName,
java.lang.String pStatus,
java.lang.String pMessage)
pTestCaseName - The test case name.pStatus - The execution status of the test case.pMessage - The message returned from the test case execution.public java.lang.String getTestCaseName()
public TestRunStatus getStatusEnum()
public java.lang.String getStatus()
public boolean isRunning()
public boolean isPassed()
public boolean isFailed()
public java.lang.String getMessage()