| 60 | } |
| 61 | |
| 62 | bool ValidatePaths(const std::vector<std::string>& fileVec, const bool expectFile) |
| 63 | { |
| 64 | bool allPathsValid = true; |
| 65 | for (auto const& file : fileVec) |
| 66 | { |
| 67 | if(!ValidatePath(file, expectFile)) |
| 68 | { |
| 69 | allPathsValid = false; |
| 70 | } |
| 71 | } |
| 72 | return allPathsValid; |
| 73 | } |
| 74 | |
| 75 | void LogAndThrow(std::string eMsg) |
| 76 | { |
no test coverage detected