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

NUnit.Framework.PropertyAttribute

Attaches information to a test assembly, fixture or method as a name/value pair.
namespace NUnit.Framework { public class PropertyAttribute : NUnitAttribute, IApplyToTest { public IPropertyBag Properties { get; } public PropertyAttribute(string propertyName, string propertyValue); public PropertyAttribute(string propertyName, int propertyValue); public PropertyAttribute(string propertyName, double propertyValue); protected PropertyAttribute(); protected PropertyAttribute(object propertyValue); public virtual void ApplyToTest(Test test); } }