Smoke test that checks if multidimensional load is set correctly.
()
| 113 | |
| 114 | |
| 115 | def test_add_client_with_multidimensional_load(): |
| 116 | """ |
| 117 | Smoke test that checks if multidimensional load is set correctly. |
| 118 | """ |
| 119 | model = Model() |
| 120 | client = model.add_client(x=1, y=2, delivery=[3, 4], pickup=[5, 6]) |
| 121 | |
| 122 | assert_equal(client.delivery, [3, 4]) |
| 123 | assert_equal(client.pickup, [5, 6]) |
| 124 | |
| 125 | |
| 126 | def test_add_depot_attributes(): |
nothing calls this directly
no test coverage detected