<PackageReference Include="NUnit" Version="3.10.0" />

IReflectionInfo

public interface 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); } }