(self)
| 181 | class TestPlot(PlotTestCase): |
| 182 | @pytest.fixture(autouse=True) |
| 183 | def setup_array(self) -> None: |
| 184 | self.darray = DataArray(easy_array((2, 3, 4))) |
| 185 | |
| 186 | def test_accessor(self) -> None: |
| 187 | from xarray.plot.accessor import DataArrayPlotAccessor |
nothing calls this directly
no test coverage detected