Interface ITestData
The ITestData interface is implemented by a class that represents a single instance of a parameterized test.
Namespace: NUnit.Framework.Interfaces
Assembly: nunit.framework.dll
Syntax
public interface ITestData
Properties
View SourceArguments
Gets the argument list to be provided to the test
Declaration
object?[] Arguments { get; }
Property Value
Type | Description |
---|---|
object[] |
Properties
Gets the property dictionary for the test case
Declaration
IPropertyBag Properties { get; }
Property Value
Type | Description |
---|---|
IPropertyBag |
RunState
Gets the RunState for this test case.
Declaration
RunState RunState { get; }
Property Value
Type | Description |
---|---|
RunState |
TestName
Gets the name to be used for the test
Declaration
string? TestName { get; }
Property Value
Type | Description |
---|---|
string |