Class AddTestResultStatus
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
unitTestUnitTestThe unit test.
unitStationChangesUnitStationThe changes made at the unit station.
Exceptions
- ArgumentNullException
unitTestis null.- ArgumentNullException
unitStationChangesis 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
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
UnitTest
Gets or sets the unit test.
[DataMember]
public UnitTest UnitTest { get; set; }