Last active
December 14, 2015 04:49
-
-
Save k0stya/5031206 to your computer and use it in GitHub Desktop.
Resharper template for test methods
How to create template: http://www.jetbrains.com/resharper/webhelp/Templates__Creating_and_Editing_Templates__Creating_a_Template.html
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
[TestMethod] | |
public void $MethodUnderTest$_should_$EXPECTED_BEHAVIOR$() | |
{ | |
// Arrange | |
$END$ | |
// Act | |
// Assert | |
} |
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
[Test] | |
public void $MethodUnderTest$_should_$EXPECTED_BEHAVIOR$() | |
{ | |
// Arrange | |
$END$ | |
// Act | |
// Assert | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment