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;
namespace NUnit.
Framework.
Interfaces
{
public interface ISuiteBuilder
{
bool CanBuildFrom(
ITypeInfo typeInfo);
TestSuite BuildFrom(
ITypeInfo typeInfo);
}
}