public void TestDialog()
        {
            var xmlData = "<cherrytomatoVersionHistory>" +
                "<version major=\"0\" minor=\"2\">" +
                "<comment>First release</comment>" +
                "</version>" +
                "</cherrytomatoVersionHistory>";

            var currentVersion = new Version(0, 1);

            var vc = new VersionChecker(xmlData, currentVersion);
            vc.CheckNewestVersion(new Version(0, 1));
        }
        public void TestDialog()
        {
            var xmlData = "<cherrytomatoVersionHistory>" +
                          "<version major=\"0\" minor=\"2\">" +
                          "<comment>First release</comment>" +
                          "</version>" +
                          "</cherrytomatoVersionHistory>";

            var currentVersion = new Version(0, 1);

            var vc = new VersionChecker(xmlData, currentVersion);

            vc.CheckNewestVersion(new Version(0, 1));
        }