(self, request, shape_)
| 106 | |
| 107 | @pytest.fixture(params=[(None, 0), (12700, 12700)]) |
| 108 | def width_get_fixture(self, request, shape_): |
| 109 | w, expected_line_width = request.param |
| 110 | shape_.ln = self.ln_bldr(w).element |
| 111 | line = LineFormat(shape_) |
| 112 | return line, expected_line_width |
| 113 | |
| 114 | @pytest.fixture( |
| 115 | params=[ |
nothing calls this directly
no test coverage detected