Skip to content

Instantly share code, notes, and snippets.

@Powerz
Created November 14, 2016 09:55
Show Gist options
  • Save Powerz/4ee90d0fb9996d07575181bcdc81641e to your computer and use it in GitHub Desktop.
Save Powerz/4ee90d0fb9996d07575181bcdc81641e to your computer and use it in GitHub Desktop.
Resharper live templates for NUnit
[Test]
public void Should_$TESTNAME$()
{
// arrange
$END$
// act
// assert
}
[SetUp]
public void SetUp()
{
$END$
}
[TearDown]
public void TearDown()
{
$END$
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment