I have the following:
namespace repro
{
[TestFixture]
public class repro
{
[Test]
public void nunit_works()
{
Assert.That(true, Is.True);
}
}
}
When I attempt to run the test via ReSharper 10, Resharper quietly refuses to run the test (displayed as "inconclusive"):
This holds in VS2012 and VS2015. I've tried starting from a fresh checkout of the project and all of the advice here (except for repaving my system). In particular, neither clearing Resharper's cache nor forcing the tests to be run in a 32bit process has any effect on the outcome.
EDIT: Setting a breakpoint at the start of the test reproduces the "debugger fires up then immediately exits" behaviour described here.
EDIT 2: Uninstalling, then reinstalling ReSharper doesn't fix it either.
Any ideas?