Package com.hp.lft.sdk.apitesting.uft
Class APITestResult
java.lang.Object
com.hp.lft.sdk.apitesting.uft.APITestResult
The result of an API test run.
- 
Constructor SummaryConstructorsConstructorDescriptionAPITestResult(boolean status, Map<String, String> outParams) Creates an instance of the APITestResult class with its run status.
- 
Method SummaryModifier and TypeMethodDescriptionThe output parameter value returned from the API test run.booleanIndicates whether this test run passed.
- 
Constructor Details- 
APITestResultCreates an instance of the APITestResult class with its run status.- Parameters:
- status- The status of this test run.
- outParams- The output parameter value returned from the API test run.
 
 
- 
- 
Method Details- 
getStatuspublic boolean getStatus()Indicates whether this test run passed.- Returns:
- The status of the test.
 
- 
getOutParamsThe output parameter value returned from the API test run.- Returns:
- The output parameters of this test.
 
 
-