-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxunit_fact.snippet
34 lines (32 loc) · 1019 Bytes
/
xunit_fact.snippet
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>Xunit Fact</Title>
<Author>Jering</Author>
<Description>Fact.</Description>
<Shortcut>jeringxf</Shortcut>
</Header>
<Snippet>
<Code Language="csharp"><![CDATA[[Fact]
public void $TestMethodName$()
{
// Arrange
// Act
// Assert
}]]></Code>
<Imports>
<Import>
<Namespace>Xunit</Namespace>
</Import>
</Imports>
<Declarations>
<Literal>
<ID>TestMethodName</ID>
<ToolTip>Name of test method.</ToolTip>
<Default>Method_Name</Default>
</Literal>
</Declarations>
</Snippet>
</CodeSnippet>
</CodeSnippets>