Last active
June 19, 2018 09:32
-
-
Save danielmarbach/c5ab2717bc1d7251af3c1e935fb1dc30 to your computer and use it in GitHub Desktop.
Nunit.Samples
This file contains 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
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