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

ISuiteBuilder

public interface ISuiteBuilder
The ISuiteBuilder interface is exposed by a class that knows how to build a suite from one or more Types.
using NUnit.Framework.Internal; using System; namespace NUnit.Framework.Interfaces { public interface ISuiteBuilder { bool CanBuildFrom(Type type); Test BuildFrom(Type type); } }