Table of Contents

Class AddTestResultStatus

Namespace
Acuit.Pinpoint.Services.Entities
Assembly
Acuit.Pinpoint.Services.Entities.dll

Status information about adding a test result.

[DataContract]
public class AddTestResultStatus
Inheritance
AddTestResultStatus
Inherited Members

Constructors

AddTestResultStatus(UnitTest, UnitStation)

Initializes a new instance of the AddTestResultStatus class.

public AddTestResultStatus(UnitTest unitTest, UnitStation unitStationChanges)

Parameters

unitTest UnitTest

The unit test.

unitStationChanges UnitStation

The changes made at the unit station.

Exceptions

ArgumentNullException

unitTest is null.

ArgumentNullException

unitStationChanges is null.

Properties

ExtendedData

Gets extended data associated with this status as a dictionary of named string values.

public IDictionary<string, string?> ExtendedData { get; }

Property Value

IDictionary<string, string>

Remarks

This data is for use by plug-ins, especially for server plug-ins to pass data to workstation plug-ins. Note that Acuit Pinpoint will not save this data with the unit record; plug-ins must handle saving and retrieving this data if needed.

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