-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathalefragnani.DUnit.ClassDeclaration.xml
More file actions
34 lines (34 loc) · 860 Bytes
/
alefragnani.DUnit.ClassDeclaration.xml
File metadata and controls
34 lines (34 loc) · 860 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
<?xml version="1.0" encoding="utf-8" ?>
<codetemplate xmlns="http://schemas.borland.com/Delphi/2005/codetemplates"
version="1.0.0">
<template name="DUnitDPRClass" invoke="manual">
<description>
DUnit (Class Declaration)
</description>
<author>
Alessandro Fragnani
</author>
<point name="ClassName">
<text>ClassName</text>
<hint>Class Name</hint>
</point>
<point name="ObjectName">
<text>ObjectName</text>
<hint>Object Name</hint>
</point>
<point name="TestMethod">
<text>TestMethod</text>
<hint>Method Name</hint>
</point>
<code language="Delphi" delimiter="|"><![CDATA[T|ClassName|Tests = class(TTestCase)
private
F|ObjectName|: T|ClassName|;
protected
procedure SetUp; override;
procedure TearDown; override;
published
procedure Test|TestMethod|;
end;]]>
</code>
</template>
</codetemplate>