---------------------------------------------------------------------
| 91 | |
| 92 | //--------------------------------------------------------------------- |
| 93 | CoverageArgs::CoverageArgs( |
| 94 | const std::vector<std::wstring>& arguments, |
| 95 | const std::wstring& modulePattern, |
| 96 | const std::wstring& sourcePattern) |
| 97 | : programToRun_{ TestCoverageConsole::GetOutputBinaryPath() }, |
| 98 | arguments_{ arguments }, |
| 99 | modulePatternCollection_{ modulePattern }, |
| 100 | sourcePatternCollection_{ sourcePattern } |
| 101 | { |
| 102 | } |
| 103 | |
| 104 | //--------------------------------------------------------------------- |
| 105 | Plugin::CoverageData ComputeCoverageData( |
nothing calls this directly
no test coverage detected