(self, model_path)
| 852 | ('WithoutInclude', _TEST_MODEL_XML), |
| 853 | ('WithInclude', _MODEL_WITH_INCLUDE_PATH)) |
| 854 | def testParseFromString(self, model_path): |
| 855 | with open(model_path) as xml_file: |
| 856 | xml_string = xml_file.read() |
| 857 | model_dir, _ = os.path.split(model_path) |
| 858 | parser.from_xml_string(xml_string, model_dir=model_dir) |
| 859 | |
| 860 | @parameterized.named_parameters( |
| 861 | ('WithoutInclude', _TEST_MODEL_XML), |
nothing calls this directly
no test coverage detected