Compares plots generated by ``plot_route_schedule``.
()
| 123 | |
| 124 | @img_comp(["plot_route_schedule"], **IMG_KWARGS) |
| 125 | def test_plot_route_schedule(): |
| 126 | """ |
| 127 | Compares plots generated by ``plot_route_schedule``. |
| 128 | """ |
| 129 | data = read("data/RC208.vrp", round_func="trunc") |
| 130 | sol = read_solution("data/RC208.sol", data) |
| 131 | plotting.plot_route_schedule(data, sol.routes()[0]) |
| 132 | |
| 133 | |
| 134 | def test_plot_demands_raises_for_out_of_bounds_load_dimension(): |
nothing calls this directly
no test coverage detected