<PackageReference Include="NUnit" Version="3.0.0-beta-3" />

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; using System.Reflection; namespace NUnit.Framework.Interfaces { public interface ITestCaseBuilder { bool CanBuildFrom(MethodInfo method, Test suite); Test BuildFrom(MethodInfo method, Test suite); } }