Class APITestResult
- Namespace
- HP.LFT.SDK.APITesting.UFT
- Assembly
- HP.LFT.SDK.dll
The result of an API test run.
public class APITestResult
- Inheritance
-
APITestResult
- Inherited Members
Constructors
APITestResult(bool, IDictionary<string, string>)
Creates an instance of the APITestResult class with its run status.
public APITestResult(bool status, IDictionary<string, string> outParams)
Parameters
statusboolThe status of this test run.
outParamsIDictionary<string, string>The output parameter value returned from the API test run.
Properties
OutParams
The output parameter values returned from the test run.
public IDictionary<string, string> OutParams { get; }
Property Value
Status
Indicates whether this test run passed.
public bool Status { get; }