(self)
| 164 | |
| 165 | @pytest.fixture |
| 166 | def document(self) -> DomDocument: |
| 167 | doc = minidom.parseString(""" |
| 168 | <root> |
| 169 | <item name="a"></item> |
| 170 | <item name="b"></item> |
| 171 | </root> |
| 172 | """) |
| 173 | return DomDocument(doc) |
| 174 | |
| 175 | def test_uc_root(self, document: DomDocument) -> None: |
| 176 | assert document.get_unique_child.tag == "root" |
nothing calls this directly
no test coverage detected