public void CheckXmlVersionCustomFail()
 {
   string xmlFile = "TestVersion2";
   InputHandler inputHandler = new InputHandler(xmlFile);
   Assert.AreEqual(false,
                   inputHandler.CheckXmlFile(Path.Combine(InputHandler.CustomizedMappingsDirectory,
                                                          "TestVersion2.xml")));
 }
 public void CheckXmlVersionDefaultFail()
 {
   string xmlFile = "TestVersion";
   InputHandler inputHandler = new InputHandler(xmlFile);
   Assert.AreEqual(false, inputHandler.CheckXmlFile(Path.Combine(InputHandler.DefaultsDirectory, "TestVersion.xml")));
 }