Skip to content

Instantly share code, notes, and snippets.

@Arpit360

Arpit360/Nunit Secret

Created February 27, 2015 05:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Arpit360/23f12e8bfbe9f85052ef to your computer and use it in GitHub Desktop.
Save Arpit360/23f12e8bfbe9f85052ef to your computer and use it in GitHub Desktop.
using NUnit.Framework;
using System;
namespace NunitTest27375
{
[TestFixture ()]
public class Test
{
[Test ()]
public void TestCase ()
{
Assert.IsTrue (true);
}
[Test ()]
public void TestCase1 ()
{
Assert.IsTrue (true);
}
[Test ()]
public void TestCase2 ()
{
Assert.IsTrue (true);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment