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

ITestCaseData

public interface ITestCaseData : ITestData
The ITestCaseData interface is implemented by a class that is able to return complete test cases for use by a parameterized test method.
using System.Runtime.CompilerServices; namespace NUnit.Framework.Interfaces { [NullableContext(2)] public interface ITestCaseData : ITestData { object ExpectedResult { get; } bool HasExpectedResult { get; } } }