(self)
| 851 | |
| 852 | @pytest.fixture |
| 853 | def value_fixture(self): |
| 854 | x, y = 42, 24 |
| 855 | data_point = XyDataPoint(None, x, y, None) |
| 856 | return data_point, x, y |
| 857 | |
| 858 | # fixture components --------------------------------------------- |
| 859 |
nothing calls this directly
no test coverage detected