(self)
| 611 | |
| 612 | @pytest.fixture |
| 613 | def add_fixture(self): |
| 614 | parent = self.parent_bldr(False).element |
| 615 | expected_xml = self.parent_bldr(True).xml() |
| 616 | return parent, expected_xml |
| 617 | |
| 618 | @pytest.fixture(params=[True, False]) |
| 619 | def getter_fixture(self, request): |
nothing calls this directly
no test coverage detected