ISuiteBuilder
The ISuiteBuilder interface is exposed by a class that knows how to
build a single test suite from a specified type.
using NUnit.Framework.Internal;
using System.Runtime.CompilerServices;
namespace NUnit.Framework.Interfaces
{
[System.Runtime.CompilerServices.NullableContext(1)]
public interface ISuiteBuilder
{
bool CanBuildFrom(ITypeInfo typeInfo);
TestSuite BuildFrom(ITypeInfo typeInfo);
TestSuite BuildFrom(ITypeInfo typeInfo, IPreFilter filter);
}
}