show/hide this revision's text 2 added 27 characters in body

We have a CruiseControl server running various AntUnit, MbUnit and NUnit tests via Ant.

In order to merge the outputs from them all we have the following in the CruiseControl config:

<log dir="logs/${project.name}/">
  <merge dir="${q7.build.tests.dir}/reports" pattern="*.xml" />
  <merge dir="${q7.build.tests.dir}/reports" pattern="**/*.html" />
</log>

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.

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?

show/hide this revision's text 1

Merging MbUnit and NUnit tests and displaying in CruiseControl

We have a CruiseControl server running various AntUnit, MbUnit and NUnit tests via Ant.

In order to merge the outputs from them all we have the following in the CruiseControl config:

<log dir="logs/${project.name}/">
  <merge dir="${q7.build.tests.dir}/reports" pattern="*.xml" />
  <merge dir="${q7.build.tests.dir}/reports" pattern="**/*.html" />
</log>

This works, however MbUnit outputs the tests in a different XML format than NUnit and AntUnit. For example, NUnit seems to use to signify a test result whereas MbUnit uses among other things.

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?