Exemplo n.º 1
0
        public void IsHandling_QueryCount_False()
        {
            var sutXml = new ExecutionXml();
            var ctrXml = new CountXml();
            var testCaseFactory = new TestCaseFactory();

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

            Assert.That(actual, Is.False);
        }
Exemplo n.º 2
0
        public void IsHandling_StructureCount_True()
        {
            var sutXml = new StructureXml();
            var ctrXml = new CountXml();
            var testCaseFactory = new TestCaseFactory();

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

            Assert.That(actual, Is.False);
        }
Exemplo n.º 3
0
        public void IsHandling_MembersCount_True()
        {
            var sutXml = new MembersXml();
            var ctrXml = new CountXml();
            var testCaseFactory = new TestCaseFactory();

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

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