Created
February 2, 2013 11:49
Revisions
-
ashutoshraina created this gist
Feb 2, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,39 @@ <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> <CodeSnippet Format="1.0.0"> <Header> <Title>NUnitTestSnippet</Title> <Author>Ashutosh</Author> <Description>Creates a NUnit Test Snippet</Description> <Shortcut>nunit</Shortcut> </Header> <Snippet> <References> <Reference> <Assembly>nunit.framework.dll;</Assembly> </Reference> </References> <Code Language="CSharp"> <![CDATA[ [TestFixture] public class DataValidationTest { [TestFixtureSetUp] public void Initialise() { } [TestFixtureTearDown] public void CleanUp() { } [Test] [Category("")] [Description("")] public void TestMethodForSomething() {} } ]]> </Code> </Snippet> </CodeSnippet> </CodeSnippets>