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

ITestData

public interface ITestData
The ITestData interface is implemented by a class that represents a single instance of a parameterized test.
using System.Runtime.CompilerServices; namespace NUnit.Framework.Interfaces { [NullableContext(1)] public interface ITestData { [Nullable(2)] string TestName { [NullableContext(2)] get; } RunState RunState { get; } [Nullable(new byte[] { 1, 2 })] object[] Arguments { [return: Nullable(new byte[] { 1, 2 })] get; } IPropertyBag Properties { get; } } }