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