Class AddTestResultStatus
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
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
UnitTest
Gets or sets the unit test.
[DataMember]
public UnitTest UnitTest { get; set; }