Resharper test runner bug Permanently deleted user Created June 27, 2017 23:19 Before I blame jetbrains for this bug... Is the resharper test runner just using the MSTest test runner, or does it implement it's own discovery the way NCrunch does?
Hello
ReSharper uses Visual Studio to discover MSTest in VS2012/13/15/17 versions. In VS2010 ReSharper uses own test discovery.
What bug are you talking about?
Thanks!
*Project 1*
AbstractTestClass
{
[TestMethod]
...
}
*Project 2*
[Test class]
ConcreteTestClass: AbstractTestClass
{
...
}
The tests in ConcreteTestClass are not discoverable by Ms test; discoverable by NUnit and NCrunch.