Created
December 8, 2015 20:42
-
-
Save GuyHarwood/0c3a232ab03e18bfec77 to your computer and use it in GitHub Desktop.
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
using Xunit; | |
namespace dnxDemo | |
{ | |
public class Tests | |
{ | |
[Fact] | |
public void Passing() | |
{ | |
Assert.Equal(1,1); | |
} | |
[Fact] | |
public void Failing() | |
{ | |
Assert.Equal(1,2); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment