| 25 | } |
| 26 | |
| 27 | static kml::FileData LoadGpxFromFile(std::string const & file) |
| 28 | { |
| 29 | auto const fileName = GetPlatform().TestsDataPathForFile(file); |
| 30 | std::string text; |
| 31 | FileReader(fileName).ReadAsString(text); |
| 32 | return LoadGpxFromString(text); |
| 33 | } |
| 34 | |
| 35 | static std::string ReadFile(char const * testFile) |
| 36 | { |
no test coverage detected