Skip to content

Instantly share code, notes, and snippets.

@andrzejkaszkowiak
Created July 29, 2019 07:39
Show Gist options
  • Save andrzejkaszkowiak/210821adda3e56a34fed36a8738ff64d to your computer and use it in GitHub Desktop.
Save andrzejkaszkowiak/210821adda3e56a34fed36a8738ff64d to your computer and use it in GitHub Desktop.
"Arrange Act Assert" Visual Studio snippet
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
<Title>ArrangeActAssert</Title>
<Author>Andrzej Kaszkowiak</Author>
<Description>
</Description>
<HelpUrl>
</HelpUrl>
<Shortcut>aaa</Shortcut>
</Header>
<Snippet>
<Code Language="csharp" Delimiter="$"><![CDATA[// Arrange
$end$
// Act
// Assert
]]></Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment