| 15 | using namespace location; |
| 16 | |
| 17 | GpsInfo const BuildGpsInfo(double latitude, double longitude, double altitude, double timestamp = 0) |
| 18 | { |
| 19 | GpsInfo gpsInfo; |
| 20 | gpsInfo.m_latitude = latitude; |
| 21 | gpsInfo.m_longitude = longitude; |
| 22 | gpsInfo.m_altitude = altitude; |
| 23 | gpsInfo.m_timestamp = timestamp; |
| 24 | return gpsInfo; |
| 25 | } |
| 26 | |
| 27 | UNIT_TEST(TrackStatistics_EmptyMultiGeometry) |
| 28 | { |