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

TestAttribute

public class TestAttribute : Attribute
Adding this attribute to a method within a TestFixtureAttribute class makes the method callable from the NUnit test runner. There is a property called Description which is optional which you can provide a more detailed test description. This class cannot be inherited.
public string Description { get; set; }

Descriptive text for this test

public TestAttribute()