-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathXUnit.snippet
More file actions
126 lines (118 loc) · 3.34 KB
/
XUnit.snippet
File metadata and controls
126 lines (118 loc) · 3.34 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?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>XUnit Test</Title>
<Shortcut>xfact</Shortcut>
<Description>Code snippet for a fact method</Description>
<Author></Author>
</Header>
<Snippet>
<Imports>
<Import>
<Namespace>Xunit</Namespace>
</Import>
</Imports>
<References>
<Reference>
<Assembly></Assembly>
</Reference>
</References>
<Declarations>
<Literal>
<ID>UnitOfWork</ID>
<ToolTip>Unit Of Work</ToolTip>
<Default>UnitOfWork</Default>
</Literal>
<Literal>
<ID>StateUnderTest</ID>
<ToolTip>State Under Test</ToolTip>
<Default>StateUnderTest</Default>
</Literal>
<Literal>
<ID>ExpectedBehavior</ID>
<ToolTip>Expected Behavior</ToolTip>
<Default>ExpectedBehavior</Default>
</Literal>
<Literal Editable="false">
<ID>FactMethod</ID>
<Function>SimpleTypeName(global::Xunit.Fact)</Function>
</Literal>
<Literal>
<ID>end</ID>
</Literal>
</Declarations>
<Code Language="csharp">
<![CDATA[[$FactMethod$]
public void $UnitOfWork$_$StateUnderTest$_$ExpectedBehavior$()
{
//Arrange
$end$
//Act
//Assert
}]]>
</Code>
</Snippet>
</CodeSnippet>
<CodeSnippet Format="1.0.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
<Title>XUnit Theory</Title>
<Shortcut>xtheory</Shortcut>
<Description>Code snippet for an XUnit theory method</Description>
<Author></Author>
</Header>
<Snippet>
<Imports>
<Import>
<Namespace>XUnit</Namespace>
</Import>
</Imports>
<References>
<Reference>
<Assembly></Assembly>
</Reference>
</References>
<Declarations>
<Literal>
<ID>UnitOfWork</ID>
<ToolTip>Unit Of Work</ToolTip>
<Default>UnitOfWork</Default>
</Literal>
<Literal>
<ID>StateUnderTest</ID>
<ToolTip>State Under Test</ToolTip>
<Default>StateUnderTest</Default>
</Literal>
<Literal>
<ID>ExpectedBehavior</ID>
<ToolTip>Expected Behavior</ToolTip>
<Default>ExpectedBehavior</Default>
</Literal>
<Literal Editable="false">
<ID>TheoryMethod</ID>
<Function>SimpleTypeName(global::Xunit.Theory)</Function>
</Literal>
<Literal>
<ID>end</ID>
</Literal>
</Declarations>
<Code Language="csharp">
<![CDATA[[$TheoryMethod$]
public void $UnitOfWork$_$StateUnderTest$_$ExpectedBehavior$()
{
//Arrange
$end$
//Act
//Assert
}]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>