(self, value, domain, expected)
| 1210 | |
| 1211 | @pytest.mark.parametrize('value, domain, expected', pprint_data) |
| 1212 | def test_pprint(self, value, domain, expected): |
| 1213 | fmt = mticker.LogFormatter() |
| 1214 | label = fmt._pprint_val(value, domain) |
| 1215 | assert label == expected |
| 1216 | |
| 1217 | @pytest.mark.parametrize('value, long, short', [ |
| 1218 | (0.0, "0", "0"), |
nothing calls this directly
no test coverage detected