(xy, data, cls)
| 7365 | "data", [np.arange(12).reshape((3, 4)), np.random.rand(3, 4, 3)] |
| 7366 | ) |
| 7367 | def test_pcolorfast(xy, data, cls): |
| 7368 | fig, ax = plt.subplots() |
| 7369 | assert type(ax.pcolorfast(*xy, data)) == cls |
| 7370 | |
| 7371 | |
| 7372 | def test_pcolorfast_bad_dims(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…