Skip to content

Instantly share code, notes, and snippets.

@michalczukm
Created April 17, 2014 15:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michalczukm/10991201 to your computer and use it in GitHub Desktop.
Save michalczukm/10991201 to your computer and use it in GitHub Desktop.
TestFixture R# template
[NUnit.Framework.TestFixtureAttribute]
public class $TESTCLASSNAME$
{
[NUnit.Framework.SetUpAttribute]
public void SetUp()
{
}
[NUnit.Framework.TestAttribute]
public void $TESTNAME$()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment