Hi, I have this project using MSpec 0.9.1 where ReSharper 9 reads the test tree fine but refuses to run any tests saying "inconclusive: test not run".
There is no Ignore attribute set on any test, and the runner itself works fine because I can run the tests for another project (within the same solution) just fine.
There's also no inheritance or anything like that, i.e. even a trivial test doesn't run:
class when_caca
{
It should_bla = () => { };
}
Does anyone have any ideas about what might cause this?
Thanks,
Mauricio