Last active
February 29, 2020 11:47
-
-
Save fabianobizarro/bc4c602e671eff59b5d5e255d68dbcab to your computer and use it in GitHub Desktop.
Visual Studio snippet for a AAA test pattern
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
<?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