static void TestOzi(wp_vector org_wp) { Waypoints way_points; if (!TestWaypointFile(_T("test/data/waypoints_ozi.wpt"), way_points, org_wp.size())) { skip(3 * org_wp.size(), 0, "opening waypoint file failed"); return; } wp_vector::iterator it; for (it = org_wp.begin(); it < org_wp.end(); it++) { trim_inplace(it->name); GetWaypoint(*it, way_points); } }
static void TestSeeYou(wp_vector org_wp) { Waypoints way_points; if (!TestWaypointFile(_T("test/data/waypoints.cup"), way_points, org_wp.size())) { skip(9 * org_wp.size(), 0, "opening waypoint file failed"); return; } wp_vector::iterator it; for (it = org_wp.begin(); it < org_wp.end(); it++) { const Waypoint *wp = GetWaypoint(*it, way_points); TestSeeYouWaypoint(*it, wp); } }
static void TestFS_UTM(wp_vector org_wp) { Waypoints way_points; if (!TestWaypointFile(_T("test/data/waypoints_utm.wpt"), way_points, org_wp.size())) { skip(3 * org_wp.size(), 0, "opening waypoint file failed"); return; } wp_vector::iterator it; for (it = org_wp.begin(); it < org_wp.end(); it++) { if (it->name.length() > 8) it->name = it->name.erase(8); trim_inplace(it->name); GetWaypoint(*it, way_points); } }
static void TestZander(wp_vector org_wp) { Waypoints way_points; if (!TestWaypointFile(_T("test/data/waypoints.wpz"), way_points, org_wp.size())) { skip(10 * org_wp.size(), 0, "opening waypoint file failed"); return; } wp_vector::iterator it; for (it = org_wp.begin(); it < org_wp.end(); it++) { if (it->name.length() > 12) it->name = it->name.erase(12); trim_inplace(it->name); const Waypoint *wp = GetWaypoint(*it, way_points); TestZanderWaypoint(*it, wp); } }
static void TestCompeGPS_UTM(wp_vector org_wp) { Waypoints way_points; if (!TestWaypointFile(_T("test/data/waypoints_compe_utm.wpt"), way_points, org_wp.size())) { skip(3 * org_wp.size(), 0, "opening waypoint file failed"); return; } wp_vector::iterator it; for (it = org_wp.begin(); it < org_wp.end(); it++) { size_t pos; while ((pos = it->name.find_first_of(_T(' '))) != tstring::npos) it->name.erase(pos, 1); if (it->name.length() > 6) it->name = it->name.erase(6); trim_inplace(it->name); const Waypoint *wp = GetWaypoint(*it, way_points); ok1(wp->comment == it->comment); } }