Table of Contents

Class CustomTestDataItem

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

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

name string

The test item name.

value string

The test item value.

Exceptions

ArgumentNullException

Properties

AdditionalDetails

Gets or sets optional additional details about the test item.

[DataMember]
public string? AdditionalDetails { get; set; }

Property Value

string

Name

Gets the test item name.

[DataMember]
public string Name { get; }

Property Value

string

Status

Gets or sets the test item status.

[DataMember]
public CustomTestDataStatus Status { get; set; }

Property Value

CustomTestDataStatus

Value

Gets the test item value.

[DataMember]
public string Value { get; }

Property Value

string