(self, data_array, xincrease)
| 3170 | |
| 3171 | @pytest.mark.parametrize("xincrease", [True, False]) |
| 3172 | def test_xincrease_kwarg(self, data_array, xincrease) -> None: |
| 3173 | with figure_context(): |
| 3174 | data_array.plot(xincrease=xincrease) |
| 3175 | assert plt.gca().xaxis_inverted() == (not xincrease) |
| 3176 | |
| 3177 | @pytest.mark.parametrize("yincrease", [True, False]) |
| 3178 | def test_yincrease_kwarg(self, data_array, yincrease) -> None: |
nothing calls this directly
no test coverage detected