IReflectionInfo
The IReflectionInfo interface is implemented by NUnit wrapper objects that perform reflection.
namespace NUnit.Framework.Interfaces
{
public interface IReflectionInfo
{
T[] GetCustomAttributes<T>(bool inherit) where T : class;
bool IsDefined<T>(bool inherit);
}
}