Table of Contents

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

IPropertyBag

RunState

Gets the RunState for this test case.

RunState RunState { get; }

Property Value

RunState

TestName

Gets the name to be used for the test

string TestName { get; }

Property Value

string