Skip to content

Instantly share code, notes, and snippets.

@yerttle
Created December 4, 2018 09:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yerttle/a60d9c1e310f7dae1ccf2be3d5d2b42a to your computer and use it in GitHub Desktop.
Save yerttle/a60d9c1e310f7dae1ccf2be3d5d2b42a to your computer and use it in GitHub Desktop.
Snippet for UnitTesting Structure
<?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>NUnit</Title>
<Author>Mark</Author>
<Description></Description>
<HelpUrl />
<Keywords />
<SnippetTypes />
<Shortcut>aaa</Shortcut>
</Header>
<Snippet>
<Declarations />
<References />
<Code Kind="any" Language="CSharp">
<![CDATA[[Test]
public void UnitOfWork_StateUnderTest_ExpectedBehaviour()
{
// 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