Last active
August 29, 2015 14:26
-
-
Save caspian311/93db5987612caa927018 to your computer and use it in GitHub Desktop.
Resharper NUnit templates
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[NUnit.Framework.Test] | |
public void $TestName$() { | |
$END$ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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