FixtureBuilderAttribute
The abstract base class for all NUnit attributes that build fixtures.
The derived class should implement IFixtureBuilder. It is not implemented
by this class to allow for future fixture-building interfaces.
using System;
namespace NUnit.Framework
{
public abstract class FixtureBuilderAttribute : Attribute
{
public FixtureBuilderAttribute()
{
}
}
}