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}""")
{
}
}
}