public void IsHandling_StructureEqualTo_False()
        {
            var sutXml = new StructureXml();
            var ctrXml = new EqualToXml();
            var testCaseFactory = new TestCaseFactory();

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

            Assert.That(actual, Is.False);
        }
        public void IsHandling_QueryEqualTo_True()
        {
            var sutXml = new ExecutionXml();
            var ctrXml = new EqualToXml();
            var testCaseFactory = new TestCaseFactory();

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

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