<PackageReference Include="NUnit" Version="3.0.0-rc-3" />

AuthorAttribute

Provides the Author of a test or test fixture.
using System; namespace NUnit.Framework { [AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = false, Inherited = false)] public class AuthorAttribute : PropertyAttribute { public AuthorAttribute(string name) : base("Author", name) { } public AuthorAttribute(string name, string email) : base("Author", $"{name}""{email}""") { } } }