feat: HTML test report generation - #4946
Conversation
Code ReviewOverall, this is a clean, well-structured implementation that follows the existing A few suggestions for improvement: 1. Use BCL's |
d4dc330 to
c7f8ac7Comparec7f8ac7 to
3b87b50CompareAdd an HtmlReporter that generates a self-contained HTML file with test results, enabled via --report-html or --report-html-filename flags. The report includes a summary section with pass/fail/skip counts, a detailed results table with test names, status badges, durations, and error messages, all with inline CSS styling and color coding.
Replace the custom HtmlEncode method with System.Net.WebUtility.HtmlEncode which handles all HTML encoding edge cases properly.
3b87b50 to
95fe160CompareUh oh!
There was an error while loading. Please reload this page.
Closes#4887. Adds HtmlReporter with --report-html option.