NUnitAttribute
The abstract base class for all custom attributes defined by NUnit.
using System;
namespace NUnit.Framework
{
public abstract class NUnitAttribute : Attribute
{
public NUnitAttribute()
{
}
}
}