(self)
| 63 | |
| 64 | class TestLinearLocator: |
| 65 | def test_basic(self): |
| 66 | loc = mticker.LinearLocator(numticks=3) |
| 67 | test_value = np.array([-0.8, -0.3, 0.2]) |
| 68 | assert_almost_equal(loc.tick_values(-0.8, 0.2), test_value) |
| 69 | |
| 70 | def test_zero_numticks(self): |
| 71 | loc = mticker.LinearLocator(numticks=0) |
nothing calls this directly
no test coverage detected