| 43 | } |
| 44 | |
| 45 | inline void WriteText(const fs::path& path, const std::string& text) |
| 46 | { |
| 47 | std::ofstream file; |
| 48 | file.open(path.std_path()); |
| 49 | file << text; |
| 50 | } |
| 51 | |
| 52 | BOOST_FIXTURE_TEST_SUITE(settings_tests, BasicTestingSetup) |
| 53 |
no test coverage detected