예제 #1
0
        public void IsHandling_StructureFasterThan_False()
        {
            var sutXml          = new StructureXml();
            var ctrXml          = new FasterThanXml();
            var testCaseFactory = new TestCaseFactory();

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

            Assert.That(actual, Is.False);
        }
예제 #2
0
        public void IsHandling_QueryFasterThan_True()
        {
            var sutXml          = new ExecutionXml();
            var ctrXml          = new FasterThanXml();
            var testCaseFactory = new TestCaseFactory();

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

            Assert.That(actual, Is.True);
        }
예제 #3
0
        public void IsHandling_StructureFasterThan_False()
        {
            var sutXml = new StructureXml();
            var ctrXml = new FasterThanXml();
            var testCaseFactory = new TestCaseFactory();

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

            Assert.That(actual, Is.False);
        }
예제 #4
0
        public void IsHandling_QueryFasterThan_True()
        {
            var sutXml = new ExecutionXml();
            var ctrXml = new FasterThanXml();
            var testCaseFactory = new TestCaseFactory();

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

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