(self)
| 71 | self.assertIsInstance(dom, Document) |
| 72 | |
| 73 | def testParseFromTextFile(self): |
| 74 | with open(tstfile, 'r', encoding='iso-8859-1') as file: |
| 75 | dom = parse(file) |
| 76 | dom.unlink() |
| 77 | self.assertIsInstance(dom, Document) |
| 78 | |
| 79 | def testAttrModeSetsParamsAsAttrs(self): |
| 80 | attr = Attr("qName", "namespaceURI", "localName", "prefix") |
nothing calls this directly
no test coverage detected