()
| 686 | |
| 687 | @mpl.style.context('default') |
| 688 | def test_lslw_bcast(): |
| 689 | col = mcollections.PathCollection([]) |
| 690 | col.set_linestyles(['-', '-']) |
| 691 | col.set_linewidths([1, 2, 3]) |
| 692 | |
| 693 | assert col.get_linestyles() == [(0, None)] * 6 |
| 694 | assert col.get_linewidths() == [1, 2, 3] * 2 |
| 695 | |
| 696 | col.set_linestyles(['-', '-', '-']) |
| 697 | assert col.get_linestyles() == [(0, None)] * 3 |
| 698 | assert (col.get_linewidths() == [1, 2, 3]).all() |
| 699 | |
| 700 | |
| 701 | def test_set_wrong_linestyle(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…