(self, Font_, font_)
| 888 | |
| 889 | @pytest.fixture |
| 890 | def font_fixture(self, Font_, font_): |
| 891 | catAx = element("c:catAx/c:txPr/a:p/a:pPr/a:defRPr") |
| 892 | defRPr = catAx.xpath(".//a:defRPr")[0] |
| 893 | tick_labels = TickLabels(catAx) |
| 894 | return tick_labels, Font_, defRPr, font_ |
| 895 | |
| 896 | @pytest.fixture( |
| 897 | params=[ |
nothing calls this directly
no test coverage detected