Поделиться через


TestDataRow<T> Class

Definition

When this type is returned from GetData(MethodInfo) (for example, through DynamicDataAttribute), it determines information related to the specific test case.

[System.Runtime.Serialization.DataContract]
public sealed class TestDataRow<T>
[<System.Runtime.Serialization.DataContract>]
type TestDataRow<'T> = class
Public NotInheritable Class TestDataRow(Of T)

Type Parameters

T

The type parameter corresponding to the type of the value held by this type. It can be a tuple for test methods with more than one parameter.

Inheritance
TestDataRow<T>
Attributes

Constructors

TestDataRow<T>(T)

Initializes a new instance of the TestDataRow<T> class.

Properties

DisplayName

Gets or sets the display name for the test case.

IgnoreMessage

Gets or sets the ignore message. A non-null value means the test case is ignored with the message provided.

TestCategories

Gets or sets the test categories for the test case.

Value

Gets the value held by this instance.

Applies to