AttributeHelper
Provides a platform-independent methods for getting attributes
for use by AttributeConstraint and AttributeExistsConstraint.
using System;
using System.Reflection;
namespace NUnit.Framework.Compatibility
{
public static class AttributeHelper
{
public static Attribute[] GetCustomAttributes(object actual, Type attributeType, bool inherit)
{
ICustomAttributeProvider customAttributeProvider = actual as ICustomAttributeProvider;
if (customAttributeProvider == null)
throw new ArgumentException($"""{actual}""", "actual");
return (Attribute[])customAttributeProvider.GetCustomAttributes(attributeType, inherit);
}
}
}