ITestCaseBuilder
The ITestCaseBuilder interface is exposed by a class that knows how to
build a test case from certain methods.
using NUnit.Framework.Internal;
namespace NUnit.Framework.Interfaces
{
public interface ITestCaseBuilder
{
bool CanBuildFrom(IMethodInfo method, Test suite);
Test BuildFrom(IMethodInfo method, Test suite);
}
}