()
| 4021 | |
| 4022 | |
| 4023 | def test_boxplot_zorder(): |
| 4024 | x = np.arange(10) |
| 4025 | fix, ax = plt.subplots() |
| 4026 | assert ax.boxplot(x)['boxes'][0].get_zorder() == 2 |
| 4027 | assert ax.boxplot(x, zorder=10)['boxes'][0].get_zorder() == 10 |
| 4028 | |
| 4029 | |
| 4030 | def test_boxplot_marker_behavior(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…