Last active
December 20, 2015 02:18
-
-
Save brenoferreira/6055031 to your computer and use it in GitHub Desktop.
NUnit Test method and class template for Resharper
This file contains hidden or 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
public class $ClassName$ | |
{ | |
[NUnit.Framework.Test] | |
public void $name$() | |
{ | |
$END$ | |
} | |
} |
This file contains hidden or 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 $name$() | |
{ | |
$END$ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment