-------------------------------------------------------------------------
| 65 | |
| 66 | //------------------------------------------------------------------------- |
| 67 | std::filesystem::path HtmlExporter::GetDefaultPath(const std::wstring&) const |
| 68 | { |
| 69 | auto now = std::time(nullptr); |
| 70 | auto localNow = std::localtime(&now); |
| 71 | std::ostringstream ostr; |
| 72 | |
| 73 | ostr << "CoverageReport-" << std::put_time(localNow, "%Y-%m-%d-%Hh%Mm%Ss"); |
| 74 | |
| 75 | return ostr.str(); |
| 76 | } |
| 77 | |
| 78 | //------------------------------------------------------------------------- |
| 79 | void HtmlExporter::Export( |
nothing calls this directly
no outgoing calls
no test coverage detected