[1529] Unit tests won't run
I just installed ReSharper 5.0.1529.4 with Visual Studio 2010 Ultimate Beta
2 and I can't get it to run or debug NUnit unit tests. It acts like it's
running the tests and even shows a green bar, but the tests are not actually
being run. This a test class I used to assert ReSharper isn't actually
running the tests:
public class FailEverything
{
public void TestFixtureSetup()
{
Assert.Fail("FAIL!")
}
public void Setup()
{
Assert.Fail("FAIL!")
}
public void TestShouldFail()
{
Assert.Fail("FAIL!")
}
}
Please sign in to leave a comment.