Skip to content

Instantly share code, notes, and snippets.

@danielmarbach
Last active June 19, 2018 09:32
Show Gist options
  • Save danielmarbach/c5ab2717bc1d7251af3c1e935fb1dc30 to your computer and use it in GitHub Desktop.
Save danielmarbach/c5ab2717bc1d7251af3c1e935fb1dc30 to your computer and use it in GitHub Desktop.
Nunit.Samples
using NUnit.Framework;
namespace AllTests
{
[TestFixture]
public class Tests
{
[Test]
public void Success()
{
Assert.IsTrue(true);
}
[Test]
public void Fail()
{
Assert.IsTrue(false);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment