(self, request)
| 617 | |
| 618 | @pytest.fixture(params=[True, False]) |
| 619 | def getter_fixture(self, request): |
| 620 | zooChild_is_present = request.param |
| 621 | parent = self.parent_bldr(zooChild_is_present).element |
| 622 | zooChild = parent.find(qn("w:zooChild")) # None if not found |
| 623 | return parent, zooChild |
| 624 | |
| 625 | @pytest.fixture(params=[True, False]) |
| 626 | def get_or_add_fixture(self, request): |
nothing calls this directly
no test coverage detected