Skip to content

Instantly share code, notes, and snippets.

@Powerz
Last active May 19, 2023 17:05
Show Gist options
  • Save Powerz/6edd3351bf4a53872741d34c0a42b6bf to your computer and use it in GitHub Desktop.
Save Powerz/6edd3351bf4a53872741d34c0a42b6bf to your computer and use it in GitHub Desktop.
Resharper live templates for xUnit
[Fact]
public void Should_$TESTNAME$()
{
//! Arrange
$END$
//! Act
//! Assert
}
[Fact]
public async Task Should_$TESTNAME$()
{
//! Arrange
$END$
//! Act
//! Assert
}
[Theory]
[AutoData]
public async Task Should_$TESTNAME$($PARAMS$)
{
//! Arrange
$END$
//! Act
//! Assert
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment