(self, document: DomDocument)
| 195 | document.get_first_by_tag("missing") |
| 196 | |
| 197 | def test_node_repr(self, document: DomDocument) -> None: |
| 198 | item = document.get_first_by_tag("item") |
| 199 | |
| 200 | assert repr(item) == item.toxml() |
| 201 | assert item.toxml() == '<item name="a"/>' |
| 202 | |
| 203 | |
| 204 | parametrize_families = pytest.mark.parametrize("xunit_family", ["xunit1", "xunit2"]) |
nothing calls this directly
no test coverage detected