<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets 
xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
	<CodeSnippet Format="1.0.0">
		<Header>
			<Title>Test</Title>
			<Shortcut>test</Shortcut>
			<Description>Test method for NUnit</Description>
			<Author>Roland Weigelt</Author>
		</Header>
		<Snippet>
			<Declarations>
				<Literal>
					<ID>methodName</ID>
					<ToolTip>Name of the test method.</ToolTip>
					<Default>TestName</Default>
				</Literal>
			</Declarations>
			<Code Language="csharp">
		[ Test ]
		public void $methodName$()
		{
			$end$
		}
			</Code>
		</Snippet>
	</CodeSnippet>
</CodeSnippets>