-------------------------------------------------------------------------
| 70 | |
| 71 | //------------------------------------------------------------------------- |
| 72 | void AddLine( |
| 73 | Plugin::CoverageData& coverageData, |
| 74 | const fs::path& modulePath, |
| 75 | const fs::path& filePath, |
| 76 | const std::initializer_list<std::pair<int, bool>>& lineArgCollection) |
| 77 | { |
| 78 | auto& file = coverageData.AddModule(modulePath).AddFile(filePath); |
| 79 | |
| 80 | AddLinesToFileCoverage(file, lineArgCollection); |
| 81 | } |
| 82 | |
| 83 | //------------------------------------------------------------------------- |
| 84 | void CheckLineHasBeenExecuted( |
no test coverage detected