Constructor - one Box
| 5 | |
| 6 | // Constructor - one Box |
| 7 | Truckload::Truckload(SharedBox box) |
| 8 | : m_boxes{ 1, box } |
| 9 | { |
| 10 | } |
| 11 | |
| 12 | // Constructor - vector of Boxes |
| 13 | Truckload::Truckload(std::vector<SharedBox> boxes) |
nothing calls this directly
no outgoing calls
no test coverage detected