Skip to content

Instantly share code, notes, and snippets.

@Finglas
Created June 6, 2016 14:10
Show Gist options
  • Save Finglas/7748cf098415494c99ecaa0777eacacd to your computer and use it in GitHub Desktop.
Save Finglas/7748cf098415494c99ecaa0777eacacd to your computer and use it in GitHub Desktop.
Test Fixture with NUnit
[TestFixture]
public class BlogPostRetrievalTests
{
[Test]
public void Retrieving_No_Posts()
{
}
[Test]
public void Retrieving_A_Single_Post()
{
}
[Test]
public void Retrieving_Invalid_Post()
{
}
// Snip
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment