| 11 | using namespace routing::turns; |
| 12 | |
| 13 | void MoveRoute(Route & route, ms::LatLon const & coords) |
| 14 | { |
| 15 | location::GpsInfo info; |
| 16 | info.m_horizontalAccuracy = 0.01; |
| 17 | info.m_verticalAccuracy = 0.01; |
| 18 | info.m_longitude = coords.m_lon; |
| 19 | info.m_latitude = coords.m_lat; |
| 20 | route.MoveIterator(info); |
| 21 | } |
| 22 | |
| 23 | UNIT_TEST(RussiaTulskayaToPaveletskayaStreetNamesTest) |
| 24 | { |
no test coverage detected