Table of Contents

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

status bool

The status of this test run.

outParams IDictionary<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

IDictionary<string, string>

Status

Indicates whether this test run passed.

public bool Status { get; }

Property Value

bool