(self, vmin, vmax, expected)
| 31 | |
| 32 | @pytest.mark.parametrize('vmin, vmax, expected', basic_data) |
| 33 | def test_basic(self, vmin, vmax, expected): |
| 34 | loc = mticker.MaxNLocator(nbins=5) |
| 35 | assert_almost_equal(loc.tick_values(vmin, vmax), expected) |
| 36 | |
| 37 | @pytest.mark.parametrize('vmin, vmax, steps, expected', integer_data) |
| 38 | def test_integer(self, vmin, vmax, steps, expected): |
nothing calls this directly
no test coverage detected