-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtm.template.xml
More file actions
38 lines (34 loc) · 766 Bytes
/
tm.template.xml
File metadata and controls
38 lines (34 loc) · 766 Bytes
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
<?xml version="1.0" encoding="utf-8"?>
<CodeTemplates version="3.0">
<CodeTemplate version="2.0">
<Header>
<_Group>Custom</_Group>
<Version />
<MimeType>text/x-csharp</MimeType>
<Shortcut>tm</Shortcut>
<_Description>Test method</_Description>
<TemplateType>Expansion</TemplateType>
</Header>
<Variables>
<Variable name="DescribeYourTest">
<Default>DescribeYourTest</Default>
</Variable>
<Variable name="Test_Name">
<Default>Test_Name</Default>
</Variable>
</Variables>
<Code><![CDATA[[Test]
public void $Test_Name$()
{
/* Arrange:
* $end$
*/
/* Act:
*
*/
/* Assert:
*
*/
}]]></Code>
</CodeTemplate>
</CodeTemplates>