---------------------------------------------------------------------
| 44 | |
| 45 | //--------------------------------------------------------------------- |
| 46 | std::wstring GetStyle(const Plugin::LineCoverage* lineCoverage) |
| 47 | { |
| 48 | if (!lineCoverage) |
| 49 | return L""; |
| 50 | |
| 51 | return (lineCoverage->HasBeenExecuted()) |
| 52 | ? HtmlFileCoverageExporter::StyleBackgroundColorExecuted |
| 53 | : HtmlFileCoverageExporter::StyleBackgroundColorUnexecuted; |
| 54 | } |
| 55 | |
| 56 | //--------------------------------------------------------------------- |
| 57 | void AddEndStyleIfNeeded( |
no test coverage detected