(self, plotmethod, subplot_kw=None)
| 154 | plt.close("all") |
| 155 | |
| 156 | def pass_in_axis(self, plotmethod, subplot_kw=None) -> None: |
| 157 | _fig, axs = plt.subplots(ncols=2, subplot_kw=subplot_kw, squeeze=False) |
| 158 | ax = axs[0, 0] |
| 159 | plotmethod(ax=ax) |
| 160 | assert ax.has_data() |
| 161 | |
| 162 | @pytest.mark.slow |
| 163 | def imshow_called(self, plotmethod) -> bool: |
no test coverage detected