()
| 59 | |
| 60 | |
| 61 | def test_handlerline3d(): |
| 62 | # Test marker consistency for monolithic Line3D legend handler. |
| 63 | fig, ax = plt.subplots(subplot_kw=dict(projection='3d')) |
| 64 | ax.scatter([0, 1], [0, 1], marker="v") |
| 65 | handles = [art3d.Line3D([0], [0], [0], marker="v")] |
| 66 | leg = ax.legend(handles, ["Aardvark"], numpoints=1) |
| 67 | assert handles[0].get_marker() == leg.legend_handles[0].get_marker() |
| 68 | |
| 69 | |
| 70 | def test_contour_legend_elements(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…