Class APITestResult

java.lang.Object
com.hp.lft.sdk.apitesting.uft.APITestResult

public class APITestResult extends Object
The result of an API test run.
  • Constructor Details

    • APITestResult

      public APITestResult(boolean status, Map<String,String> outParams)
      Creates 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

    • getStatus

      public boolean getStatus()
      Indicates whether this test run passed.
      Returns:
      The status of the test.
    • getOutParams

      public Map<String,String> getOutParams()
      The output parameter value returned from the API test run.
      Returns:
      The output parameters of this test.