()
| 59 | |
| 60 | |
| 61 | def test_get_labels(): |
| 62 | fig, ax = plt.subplots() |
| 63 | ax.set_xlabel('x label') |
| 64 | ax.set_ylabel('y label') |
| 65 | assert ax.get_xlabel() == 'x label' |
| 66 | assert ax.get_ylabel() == 'y label' |
| 67 | |
| 68 | |
| 69 | def test_repr(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…