()
| 328 | |
| 329 | |
| 330 | def test_suptitle_fontproperties(): |
| 331 | fig, ax = plt.subplots() |
| 332 | fps = mpl.font_manager.FontProperties(size='large', weight='bold') |
| 333 | txt = fig.suptitle('fontprops title', fontproperties=fps) |
| 334 | assert txt.get_fontsize() == fps.get_size_in_points() |
| 335 | assert txt.get_weight() == fps.get_weight() |
| 336 | |
| 337 | |
| 338 | def test_suptitle_subfigures(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…