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);
}
}