Merging MbUnit and NUnit tests and displaying in CruiseControl - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T09:25:09Zhttp://stackoverflow.com/feeds/question/433788http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/433788/merging-mbunit-and-nunit-tests-and-displaying-in-cruisecontrol1Merging MbUnit and NUnit tests and displaying in CruiseControlSimon Brangwin2009-01-11T21:49:54Z2009-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><log dir="logs/${project.name}/">
<merge dir="${q7.build.tests.dir}/reports" pattern="*.xml" />
<merge dir="${q7.build.tests.dir}/reports" pattern="**/*.html" />
</log>
</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 <testcase> to signify a test result whereas MbUnit uses <run> 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#4452531Answer by Jeff Brown for Merging MbUnit and NUnit tests and displaying in CruiseControlJeff Brown2009-01-15T00:50:09Z2009-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>