Skip to content

Instantly share code, notes, and snippets.

@fabianobizarro
Last active February 29, 2020 11:47
Show Gist options
  • Save fabianobizarro/bc4c602e671eff59b5d5e255d68dbcab to your computer and use it in GitHub Desktop.
Save fabianobizarro/bc4c602e671eff59b5d5e255d68dbcab to your computer and use it in GitHub Desktop.
Visual Studio snippet for a AAA test pattern
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>AAA Pattern</Title>
<Shortcut>aaa</Shortcut>
<Description>Code snippet for a AAA test pattern</Description>
<Author>Fabiano Bizarro</Author>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Imports>
</Imports>
<Declarations>
</Declarations>
<Code Language="csharp"><![CDATA[// Arrange
// Act
$end$
// Assert]]></Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment