com.hp.lft.sdk.apitesting.uft

Class APITestResult

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


  • public class APITestResult
    extends java.lang.Object
    The result of an API test run.
    • Constructor Summary

      Constructor and Description
      APITestResult(boolean status, java.util.Map<java.lang.String,java.lang.String> outParams)
      Creates an instance of the APITestResult class with its run status.
    • Method Summary

      Modifier and TypeMethod and Description
      java.util.Map<java.lang.String,java.lang.String>getOutParams()
      The output parameter value returned from the API test run.
      booleangetStatus()
      Indicates whether this test run passed.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • APITestResult

        public APITestResult(boolean status,
                             java.util.Map<java.lang.String,java.lang.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 Detail

      • getStatus

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

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