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