Skip to content

Instantly share code, notes, and snippets.

@junderhill
Created October 17, 2014 13:18
Show Gist options
  • Save junderhill/506309166f9d21e5779f to your computer and use it in GitHub Desktop.
Save junderhill/506309166f9d21e5779f to your computer and use it in GitHub Desktop.
AAA Code Snipper
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets
xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>MsTest AAA</Title>
<Author>Jason Underhill</Author>
<Description>Adds a unit test stub method for MsTest</Description>
<Shortcut>aaa</Shortcut>
</Header>
<Snippet>
<Code Language="CSharp">
<![CDATA[
[TestMethod]
public void TestThat(){
//arrange
//act
//assert
}]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment