1

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"):

enter image description here

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?

Community
  • 1
  • 1
Matt Olson
  • 409
  • 5
  • 13

1 Answers1

0

Uninstalling R# 10 and reverting to R# 9.3 seems to have done the trick.

(Really the solution is to avoid working on projects with harrowing and obscure pre-build dependencies and use NCrunch, but that's not what I'm getting paid to do.)

Matt Olson
  • 409
  • 5
  • 13