Skip to content

Instantly share code, notes, and snippets.

@GuyHarwood
Created December 8, 2015 20:42
Show Gist options
  • Save GuyHarwood/0c3a232ab03e18bfec77 to your computer and use it in GitHub Desktop.
Save GuyHarwood/0c3a232ab03e18bfec77 to your computer and use it in GitHub Desktop.
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