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

IReflectionInfo

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