(self, request)
| 395 | |
| 396 | @pytest.fixture(params=[True, False]) |
| 397 | def getter_fixture(self, request): |
| 398 | zooChild_is_present = request.param |
| 399 | parent = self.parent_bldr(zooChild_is_present).element |
| 400 | zooChild = parent.find(qn("p:zooChild")) # None if not found |
| 401 | return parent, zooChild |
| 402 | |
| 403 | @pytest.fixture(params=[True, False]) |
| 404 | def get_or_add_fixture(self, request): |
nothing calls this directly
no test coverage detected