-------------------------------------------------------------------------
| 29 | { |
| 30 | //------------------------------------------------------------------------- |
| 31 | std::filesystem::path BinaryExporter::GetDefaultPath(const std::wstring& prefix) const |
| 32 | { |
| 33 | std::filesystem::path path{ prefix }; |
| 34 | |
| 35 | path += ".cov"; |
| 36 | |
| 37 | return path; |
| 38 | } |
| 39 | |
| 40 | //------------------------------------------------------------------------- |
| 41 | void BinaryExporter::Export( |
nothing calls this directly
no outgoing calls
no test coverage detected