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

ITestCaseBuilder

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