<PackageReference Include="NUnit" Version="3.9.0" />

ITestData

public interface ITestData
The ITestData interface is implemented by a class that represents a single instance of a parameterized test.
namespace NUnit.Framework.Interfaces { public interface ITestData { string TestName { get; } RunState RunState { get; } object[] Arguments { get; } IPropertyBag Properties { get; } } }