<?xml version="1.0" encoding="utf-8" ?>
<codetemplate xmlns="http://schemas.borland.com/Delphi/2005/codetemplates"
version="1.0.0">
<template name="test" invoke="manual">
<point name="name">
<hint>
Method name
</hint>
<text>
MyUnitTest
</text>
</point>
<description>
Unit test method
</description>
<author>
Kirby Turner - White Peak Software Inc
</author>
<code language="CSharp"><![CDATA[[Test]
public void $name$()
{
$*$Assert.Fail("Not implemented.");$end$
}]]>
</code>
</template>
</codetemplate>
The template will generate the following C# code:
posted by Kirby | 29-Jul-2006 9:19 AM | comments (0)
[Test]
public void MyUnitTest()
{
Assert.Fail("Not implemented.");
}
Add Your Comment
