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

ITestCaseBuilder

public interface ITestCaseBuilder
The ITestCaseBuilder interface is exposed by a class that knows how to build a test case from certain methods.
using NUnit.Framework.Internal; namespace NUnit.Framework.Interfaces { public interface ITestCaseBuilder { bool CanBuildFrom(IMethodInfo method, Test suite); Test BuildFrom(IMethodInfo method, Test suite); } }