| 146 | } |
| 147 | |
| 148 | static std::string readIniFile(std::filesystem::path const& fpath) |
| 149 | { |
| 150 | std::ifstream infile(fpath); |
| 151 | std::stringstream str; |
| 152 | str << infile.rdbuf(); |
| 153 | return str.str(); |
| 154 | } |
| 155 | |
| 156 | void test_ini() |
| 157 | { |
nothing calls this directly
no outgoing calls
no test coverage detected