Merging MbUnit and NUnit tests and displaying in CruiseControl - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T09:25:09Z http://stackoverflow.com/feeds/question/433788 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/433788/merging-mbunit-and-nunit-tests-and-displaying-in-cruisecontrol 1 Merging MbUnit and NUnit tests and displaying in CruiseControl Simon Brangwin 2009-01-11T21:49:54Z 2009-01-15T00:50:09Z <p>We have a CruiseControl server running various AntUnit, MbUnit and NUnit tests via Ant.</p> <p>In order to merge the outputs from them all we have the following in the CruiseControl config:</p> <pre><code>&lt;log dir="logs/${project.name}/"&gt; &lt;merge dir="${q7.build.tests.dir}/reports" pattern="*.xml" /&gt; &lt;merge dir="${q7.build.tests.dir}/reports" pattern="**/*.html" /&gt; &lt;/log&gt; </code></pre> <p>This works, however MbUnit outputs the tests in a different XML format than NUnit and AntUnit. For example, NUnit seems to use &lt;testcase&gt; to signify a test result whereas MbUnit uses &lt;run&gt; among other things.</p> <p>Does anyone know how to transform the MbUnit output into NUnit compatible format XML that we can then merge together to produce a full set of test reports by applying the NUnit unittests.xsl?</p> http://stackoverflow.com/questions/433788/merging-mbunit-and-nunit-tests-and-displaying-in-cruisecontrol/445253#445253 1 Answer by Jeff Brown for Merging MbUnit and NUnit tests and displaying in CruiseControl Jeff Brown 2009-01-15T00:50:09Z 2009-01-15T00:50:09Z <p>If you use Gallio to run both your MbUnit and NUnit tests then the output will be in the same format and you can use the Gallio reports.</p> <p>Alternately just modify your Dashboard.config file to include the MbUnit report in addition to the NUnit report.</p>