| 49 | } |
| 50 | |
| 51 | std::string createTempDirWithFile(TestController* testController, const std::string& file_name, const std::string& content) { |
| 52 | std::string temp_dir = createTempDir(testController); |
| 53 | putFileToDir(temp_dir, file_name, content); |
| 54 | return temp_dir; |
| 55 | } |
| 56 | |
| 57 | std::string getFileContent(const std::string& file_name) { |
| 58 | std::ifstream file_handle(file_name, std::ios::binary | std::ios::in); |
no test coverage detected