Hi
I've run into the following issue. Given these classes:
Code:
[TestFixture]
public abstract class BaseClassWithTests
{
[Test]
public void HelloFromBaseClass()
{
}
}
[TestFixture]
public class DerivedClass : BaseClassWithTests
{
}
NCrunch runs the HelloFromBaseClass test within the DerivedClass fixture as I would hope, UNTIL I move the DerivedClass to a different project. Then it will run any tests that are in DerivedClass itself but won't run BaseClassWithTests:HelloFromBaseClass from the DerivedClass fixture.
Bug? :)
G.