ITestCaseData
The ITestCaseData interface is implemented by a class
that is able to return complete testcases for use by
a parameterized test method.
namespace NUnit.Framework.Interfaces
{
public interface ITestCaseData
{
string TestName { get; }
RunState RunState { get; }
object[] Arguments { get; }
object ExpectedResult { get; }
bool HasExpectedResult { get; }
IPropertyBag Properties { get; }
}
}