| 111 | } |
| 112 | |
| 113 | void CheckSpeed(initializer_list<uint32_t> const & types, InOutCitySpeedKMpH const & expectedSpeed) |
| 114 | { |
| 115 | SpeedParams const inCity(true /* forward */, true /* in city */, Maxspeed()); |
| 116 | CheckSpeedWithParams(types, inCity, expectedSpeed.m_inCity); |
| 117 | SpeedParams const outCity(true /* forward */, false /* in city */, Maxspeed()); |
| 118 | CheckSpeedWithParams(types, outCity, expectedSpeed.m_outCity); |
| 119 | } |
| 120 | |
| 121 | void CheckOneWay(initializer_list<uint32_t> const & types, bool expectedValue) |
| 122 | { |
no test coverage detected