Table of Contents

Class AddTestResultStatus

Namespace
Acuit.Pinpoint.Client2
Assembly
Acuit.Pinpoint.Client2.dll

Status information about adding a test result.

[DataContract]
public class AddTestResultStatus
Inheritance
AddTestResultStatus
Inherited Members

Constructors

AddTestResultStatus()

Initializes a new instance of the AddTestResultStatus class.

public AddTestResultStatus()

AddTestResultStatus(IDictionary<string, string>)

Initializes a new instance of the AddTestResultStatus class.

public AddTestResultStatus(IDictionary<string, string> extendedData)

Parameters

extendedData IDictionary<string, string>

Extended data associated with the test result. This can be null.

Properties

ExtendedData

Gets a collection of extended data associated with this status.

[DataMember]
public IDictionary<string, string> ExtendedData { get; }

Property Value

IDictionary<string, string>

Remarks

Extended data is stored as a dictionary of names and string values. This data is for use by plug-ins, especially for server plug-ins to pass data to workstation plug-ins.

UnitStationChanges

Gets or sets the changes made at the unit station.

[DataMember]
public UnitStation UnitStationChanges { get; set; }

Property Value

UnitStation

UnitTest

Gets or sets the unit test.

[DataMember]
public UnitTest UnitTest { get; set; }

Property Value

UnitTest