public void Test04_FollowPathRegressionTesting()
        {
            Logging.Info("FollowPath regressions start");
            PatchRegression regression = new PatchRegression(PatchRegressionTypes.followPath, BuildFollowPathUnittests());

            Assert.IsTrue(regression.RunRegressions());
            Logging.Info("FollowPath regressions end");
        }
        public void Test02_XmlRegressionTesting()
        {
            Logging.Info("Xml regressions start");
            PatchRegression regression = new PatchRegression(PatchRegressionTypes.xml, BuildXmlUnittests());

            Assert.IsTrue(regression.RunRegressions());
            Logging.Info("Xml regressions end");
        }
        public void Test03_JsonRegressionTesting()
        {
            Logging.Info("Json regressions start");
            PatchRegression regression = new PatchRegression(PatchRegressionTypes.json, BuildJsonUnittests());

            Assert.IsTrue(regression.RunRegressions());
            Logging.Info("Json regressions end");
        }
        public void Test01_RegexRegressionTesting()
        {
            Logging.Info("Regex regressions start");
            PatchRegression regression = new PatchRegression(PatchRegressionTypes.regex, BuildRegexUnittests());

            Assert.IsTrue(regression.RunRegressions());
            Logging.Info("Regex regressions end");
        }