Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to convert NUnit output into an HTML report

Does anyone have any suggestions for a good tool, xslt or other that can produce an HTML report from the XML output of NUnit?

We're currently using NUnit 2.5.5 to run a number of tests on our code base. The dev team are happy seeing the output in the GUI and console runners and the report shown on our Hudson server.

The Hudson generated report needs a user to click links to drill down to some of the details. I would like to produce a single document report suitable for showing to management and/or the client.

Thus far, the only tool I've found is http://nunit2report.sourceforge.net/ which hasn't been updated sine 2003, is based on an old version of NUnit (I think the report format might have changed significantly?) and is a nant task (we don't use nant).

Before I spend too long trying to doctor nunit2reports xslt's to suit the recent NUnit's output, can anyone point be to a more suitable tool?

Many thanks.

like image 560
Grhm Avatar asked Jun 08 '10 09:06

Grhm


2 Answers

ReportUnit is not maintained and is being replaced by extentreports-dotnet-cli.


You can also try ReportUnit, which also supports Gallio, xUnit, TestNG and MSTest: http://reportunit.relevantcodes.com

This is a simple exe file that will convert your xml report into an HTML dashboards (samples):

  • Folder-level dashboard: http://relevantcodes.com/Tools/ReportUnit/Index.html
  • File-level: http://relevantcodes.com/Tools/ReportUnit/NUnit-TestResult.html

Usage:

reportunit "path-to-folder" // folder-level report
reportunit "path-to-folder" "output-folder" // folder-level report
reportunit "Result.xml" "generated.html" // file-level report

More info here: http://reportunit.relevantcodes.com

like image 146
Anshoo Avatar answered Oct 18 '22 09:10

Anshoo


I know this is an old question, but it's the top result in Google on the subject and thought it deserved a mention.. Where I work had the exact same issue so we developed a little app that will parse an XML results file and output a nice looking self-contained HTML page based on bootstrap 3. Code and binaries are available on GitHub. It's responsive as well as we email the reports to mobile devices.

like image 24
Luke Avatar answered Oct 18 '22 10:10

Luke