Skip to content

Instantly share code, notes, and snippets.

@caspian311
Last active August 29, 2015 14:26
Show Gist options
  • Save caspian311/93db5987612caa927018 to your computer and use it in GitHub Desktop.
Save caspian311/93db5987612caa927018 to your computer and use it in GitHub Desktop.
Resharper NUnit templates
[NUnit.Framework.Test]
public void $TestName$() {
$END$
}
$HEADER$namespace $NAMESPACE$
{
[NUnit.Framework.TestFixture]
public class $CLASS$
{
private $TestObjectType$ _testObject;
[NUnit.Framework.SetUp]
public void SetUp()
{
_testObject = new $TestObjectType$($END$);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment