| 223 | } |
| 224 | |
| 225 | TEST(road, parse_files) { |
| 226 | for (const auto &file : util::OpenDrive::GetAvailableFiles()) { |
| 227 | // std::cerr << file << std::endl; |
| 228 | auto map = OpenDriveParser::Load(util::OpenDrive::Load(file)); |
| 229 | ASSERT_TRUE(map); |
| 230 | // print_roads(map, file); |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | TEST(road, parse_road_links) { |
| 235 | for (const auto &file : util::OpenDrive::GetAvailableFiles()) { |
nothing calls this directly
no test coverage detected