-------------------------------------------------------------------------
| 169 | |
| 170 | //------------------------------------------------------------------------- |
| 171 | std::filesystem::path CoberturaExporter::GetDefaultPath(const std::wstring& prefix) const |
| 172 | { |
| 173 | std::filesystem::path path{ prefix }; |
| 174 | |
| 175 | path += "Coverage.xml"; |
| 176 | |
| 177 | return path; |
| 178 | } |
| 179 | |
| 180 | //------------------------------------------------------------------------- |
| 181 | void CoberturaExporter::Export( |