Test | NUnit Docs
docs.nunit.org › articles › nunitExamples namespace NUnit.Tests { using System; using NUnit.Framework; [TestFixture] public class SuccessTests { // A simple test [Test] public void Add() { /* ... */ } // A test with a description property [Test (Description="My really cool test")] public void Add() { /* ...