-------------------------------------------------------------------------
| 188 | |
| 189 | //------------------------------------------------------------------------- |
| 190 | void CodeCoverageRunner::LoadModule(HANDLE hProcess, |
| 191 | HANDLE hFile, |
| 192 | void* baseOfImage) |
| 193 | { |
| 194 | HandleInformation handleInformation; |
| 195 | |
| 196 | std::wstring filename = handleInformation.ComputeFilename(hFile); |
| 197 | |
| 198 | auto isSelected = coverageFilterManager_->IsModuleSelected(filename); |
| 199 | if (isSelected) |
| 200 | { |
| 201 | isSelected = monitoredLineRegister_->RegisterLineToMonitor( |
| 202 | filename, hProcess, baseOfImage); |
| 203 | } |
| 204 | filterAssistant_->OnNewModule(filename, isSelected); |
| 205 | } |
| 206 | } |
nothing calls this directly
no test coverage detected