()
| 2348 | |
| 2349 | |
| 2350 | def test_margin_getters(): |
| 2351 | fig = plt.figure() |
| 2352 | ax = fig.add_subplot(projection='3d') |
| 2353 | ax.margins(0.1, 0.2, 0.3) |
| 2354 | assert ax.get_xmargin() == 0.1 |
| 2355 | assert ax.get_ymargin() == 0.2 |
| 2356 | assert ax.get_zmargin() == 0.3 |
| 2357 | |
| 2358 | |
| 2359 | @pytest.mark.parametrize('err, args, kwargs, match', ( |
nothing calls this directly
no test coverage detected
searching dependent graphs…