public void TheoryConditional_Should_Allow_Custom_SkipLogic() { var theoryConditional = new TheoryConditional(CustomSkipLogic.Type); Assert.Same(CustomSkipLogic.Type, theoryConditional.SkipLogicType); Assert.Same(typeof(TheoryDiscoverer), theoryConditional.DiscovererType); }
public void TheoryConditional_Should_Apply_To_FactDiscoverer() { var theoryConditional = new TheoryConditional(); Assert.Same(typeof(TheoryDiscoverer), theoryConditional.DiscovererType); }