Skip to content

Instantly share code, notes, and snippets.

@MisterJames
MisterJames / AaaTestMethod.snippet
Last active December 9, 2020 22:38
This is a code snippet that you can invoke via tab completion. Type aaa and get a full test method with Arrange, Act, Assert parts, with encouragement to help name your test method following Roy Osherove's lead (http://osherove.com/blog/2005/4/3/naming-standards-for-unit-tests.html).
<?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>AAA Test Method</Title>
<Shortcut>aaa</Shortcut>
<Description>Code snippet for a test method with Arrange, Act, Assert</Description>