Ejemplo n.º 1
0
        public void IsHandling_StructureContains_True()
        {
            var sutXml          = new StructureXml();
            var ctrXml          = new ContainXml();
            var testCaseFactory = new TestCaseFactory();

            var actual = testCaseFactory.IsHandling(sutXml.GetType(), ctrXml.GetType());

            Assert.That(actual, Is.True);
        }
Ejemplo n.º 2
0
        public void IsHandling_QueryContains_False()
        {
            var sutXml          = new ExecutionXml();
            var ctrXml          = new ContainXml();
            var testCaseFactory = new TestCaseFactory();

            var actual = testCaseFactory.IsHandling(sutXml.GetType(), ctrXml.GetType());

            Assert.That(actual, Is.False);
        }