Forum member

Mpdreamz

1 post

Posts by Mpdreamz

  1. 2.11.0.12 and xUnit 2 beta 5 inherited tests

    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=csharp] public abstract class TestsBase { [Fact] public void FindMe() { } } public class TestsChild : TestBase { [Fact] …