Tests that the attribute member functions return the passed in values.
(delivery: int, pickup: int, load: int)
| 12 | [(1, 2, 3), (0, 0, 0), (_INT_MAX, _INT_MAX, _INT_MAX)], |
| 13 | ) |
| 14 | def test_attribute_getters(delivery: int, pickup: int, load: int): |
| 15 | """ |
| 16 | Tests that the attribute member functions return the passed in values. |
| 17 | """ |
| 18 | load_segment = LoadSegment(delivery, pickup, load) |
| 19 | assert_equal(load_segment.delivery(), delivery) |
| 20 | assert_equal(load_segment.pickup(), pickup) |
| 21 | assert_equal(load_segment.load(), load) |
| 22 | |
| 23 | |
| 24 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected