TestCaseBuilderAttribute
The abstract base class for all NUnit attributes that build test cases.
The derived class should implement one of the test builder interfaces.
namespace NUnit.Framework
{
public abstract class TestCaseBuilderAttribute : NUnitAttribute
{
public TestCaseBuilderAttribute()
{
}
}
}