Exemplo n.º 1
0
        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);
        }
Exemplo n.º 2
0
        public void TheoryConditional_Should_Apply_To_FactDiscoverer()
        {
            var theoryConditional = new TheoryConditional();

            Assert.Same(typeof(TheoryDiscoverer), theoryConditional.DiscovererType);
        }