12 def test_check_xml_with_valid_xml_file(self):
17 dir_path = os.path.dirname(os.path.realpath(__file__))
24 self.assertFalse(result,
"Valid xml detected as invalid.")
26 def test_check_xml_with_invalid_xml_file(self):
31 dir_path = os.path.dirname(os.path.realpath(__file__))
38 self.assertTrue(result,
"Invalid xml detected as valid.")
41 if __name__ ==
'__main__':