After upgrading to beta 5 of xUnit my inherited test cases were no longer found in NCrunch (but still are in the visual studio test explorer)
Code:
public abstract class TestsBase
{
[Fact]
public void FindMe() {
}
}
public class TestsChild : TestBase {
[Fact]
public void FoundMe() {
}
}
FindMe() is not listed by NCrunch in this case but is by the default xunit visual studio runner.
NCrunch only finds FoundMe()