NUnit Cheat Sheet
NUnit Cheat Sheet
using System;
using Kellerman.Business; //Reference to class to test
using NUnit.Framework; //This must be included to do the asserts
namespace Kellerman.BusinessTest
{
//Tests for the Invoice Business Object
[TestFixture]
[Category(“Optional Category Attribute”), Description(“Optional Description”)]
public class InvoiceTest
{
private Invoice _invoice = null;
}
}