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
c7f8ac7
Compare
c7f8ac7 to
3b87b50
Compare
Add 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
95fe160
Compare
Closes #4887. Adds HtmlReporter with --report-html option.