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