| 87 | } |
| 88 | |
| 89 | void write_file(std::string data, std::string dir, std::string fn) |
| 90 | { |
| 91 | std::stringstream s; |
| 92 | s << dir << "/" << fn; |
| 93 | std::ofstream out(s.str().c_str()); |
| 94 | REQUIRE(out); |
| 95 | out << data; |
| 96 | out.close(); |
| 97 | } |
no outgoing calls
no test coverage detected