(self)
| 1145 | |
| 1146 | @unittest.expectedFailure # TODO: RUSTPYTHON; AttributeError: 'xmlparser' object has no attribute 'SetParamEntityParsing' |
| 1147 | def test_expat_inpsource_filename(self): |
| 1148 | parser = create_parser() |
| 1149 | result = BytesIO() |
| 1150 | xmlgen = XMLGenerator(result) |
| 1151 | |
| 1152 | parser.setContentHandler(xmlgen) |
| 1153 | parser.parse(TEST_XMLFILE) |
| 1154 | |
| 1155 | self.assertEqual(result.getvalue(), xml_test_out) |
| 1156 | |
| 1157 | @unittest.expectedFailure # TODO: RUSTPYTHON; AttributeError: 'xmlparser' object has no attribute 'SetParamEntityParsing' |
| 1158 | def test_expat_inpsource_sysid(self): |
nothing calls this directly
no test coverage detected