I'm trying to get XUnit to work with Visual Studio 2013 Community (Version 12.0.31101.00 Update 4).
I've got NUnit to work so I thought it would be simple to get XUnit to work.
The code is
using Xunit;
namespace Xunit
{
public class Class1
{
[Fact]
public void myFirstTest()
{
Assert.False(true);
}
}
}
I've used the NuGet Package manager to install the following.
XUnit.net is version 1.9.2
XUnit.net: Runners is version 1.9.2
I've seen videos of people running XUnit with VS2012 but no one with 2013.
Any ideas?