Created
February 2, 2013 11:49
-
-
Save ashutoshraina/4696972 to your computer and use it in GitHub Desktop.
NUnit Code Snippet
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 characters
<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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment