Created
September 29, 2021 08:49
-
-
Save jterral/27d986ced564959f4b863a47428fa0c6 to your computer and use it in GitHub Desktop.
VS Snippet - Arrange Act Assert
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>Arrange Act Assert</Title> | |
<Shortcut>aaa</Shortcut> | |
<Description>Code snippet for an automatically write Arrange Act Assert.</Description> | |
<Author>Jonathan Terral</Author> | |
<SnippetTypes> | |
<SnippetType>Expansion</SnippetType> | |
</SnippetTypes> | |
</Header> | |
<Snippet> | |
<Code 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