<PackageReference Include="NUnit" Version="3.0.0-beta-2" />

ITestCaseData

public interface 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; } } }