Class CustomTestDataItem
A custom test data item, provided by a test plug-in.
[DataContract]
public class CustomTestDataItem
- Inheritance
-
CustomTestDataItem
- Inherited Members
Constructors
CustomTestDataItem(string, string)
Initializes a new instance of the CustomTestDataItem class.
public CustomTestDataItem(string name, string value)
Parameters
Exceptions
Properties
AdditionalDetails
Gets or sets optional additional details about the test item.
[DataMember]
public string? AdditionalDetails { get; set; }
Property Value
Name
Gets the test item name.
[DataMember]
public string Name { get; }
Property Value
Status
Gets or sets the test item status.
[DataMember]
public CustomTestDataStatus Status { get; set; }
Property Value
Value
Gets the test item value.
[DataMember]
public string Value { get; }