Last active
April 17, 2023 08:32
-
-
Save yetanotherchris/5181209 to your computer and use it in GitHub Desktop.
Arrange act assert snippet for Visual Studio
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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<CodeSnippet Format="1.0.0"> | |
<Header> | |
<Title>Arrange Act Assert</Title> | |
<Author>Chris</Author> | |
<Description>Adds an arrange, act, assert to a test</Description> | |
<HelpUrl /> | |
<Keywords /> | |
<SnippetTypes /> | |
<Shortcut>aaa</Shortcut> | |
</Header> | |
<Snippet> | |
<Declarations /> | |
<References /> | |
<Code Kind="any" Language="CSharp"><![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