()
| 104 | |
| 105 | |
| 106 | def test_axes3d_repr(): |
| 107 | fig = plt.figure() |
| 108 | ax = fig.add_subplot(projection='3d') |
| 109 | ax.set_label('label') |
| 110 | ax.set_title('title') |
| 111 | ax.set_xlabel('x') |
| 112 | ax.set_ylabel('y') |
| 113 | ax.set_zlabel('z') |
| 114 | assert repr(ax) == ( |
| 115 | "<Axes3D: label='label', " |
| 116 | "title={'center': 'title'}, xlabel='x', ylabel='y', zlabel='z'>") |
| 117 | |
| 118 | |
| 119 | @mpl3d_image_comparison(['axes3d_primary_views.png'], style='mpl20', |
nothing calls this directly
no test coverage detected
searching dependent graphs…