-------------------------------------------------------------------------
| 39 | |
| 40 | //------------------------------------------------------------------------- |
| 41 | void BinaryExporter::Export( |
| 42 | const Plugin::CoverageData& coverageData, |
| 43 | const std::filesystem::path& output) |
| 44 | { |
| 45 | CoverageDataSerializer coverageDataSerializer; |
| 46 | |
| 47 | coverageDataSerializer.Serialize(coverageData, output); |
| 48 | Tools::ShowOutputMessage(L"Coverage binary generated in file: ", output); |
| 49 | } |
| 50 | } |
nothing calls this directly
no test coverage detected