| 20 | A:b6e31294-5c90-4105-9f7b-51a382eabfa0,Poland,highway-primary,psurface-paved_good,50,0,0,0,53.8524 21.3061,1199.34,60,71.9604,0,0,0,0,0,10,0)"; |
| 21 | |
| 22 | UNIT_TEST(FillTableTestEmpty) |
| 23 | { |
| 24 | std::stringstream ss; |
| 25 | std::vector<TableRow> table; |
| 26 | MwmToDataPoints matchedDataPoints; |
| 27 | |
| 28 | // Stream without csv header. |
| 29 | FillTable(ss, matchedDataPoints, table); |
| 30 | TEST(table.empty(), ()); |
| 31 | TEST(matchedDataPoints.empty(), ()); |
| 32 | |
| 33 | // Stream with only csv header. |
| 34 | ss << "mwm,number\n"; |
| 35 | FillTable(ss, matchedDataPoints, table); |
| 36 | TEST(table.empty(), ()); |
| 37 | TEST(matchedDataPoints.empty(), ()); |
| 38 | } |
| 39 | |
| 40 | UNIT_TEST(FillTableTest) |
| 41 | { |
nothing calls this directly
no test coverage detected