I’ll be “MC’ing” the OpenSpaces portion of OpenSQLCamp
This weekend is OpenSQL Camp, here in Charlottesville, Virginia at CitySpace!

I’ve volunteered to help MC the meet and greet and OpenSpaces portions of Friday night. We’ve got people coming in from all over the world, plus a good turnout of interesting Charlottesville folks, so Friday will be key to blend these folks into a cohesive conference!
The OpenSpaces planning portion should be pretty easy as we’re really just nominating sessions for a handful of slots. Hopefully we’ll still manage to keep the flexibility and real time applicability of a totally OpenSpaces style conference! Remember the Law of Two Feet.
Tags: OpenSpaces, OpenSQLCamp
April 12th, 2007 at 1:29 pm
Hi,
You can use NUnit command line to do the XLST transform. The hard part for me was learning how to use XSLT! There is a sample XSLT file included in the NUnit distribution called Summary.xslt.
Take a look here:
http://www.nunit.org/index.php?p=consoleCommandLine&r=2.4
Hope that helps–
Daniel
April 13th, 2007 at 4:00 pm
Wow.. That was buried deep in the documentation. I swear I’ve looked for this and didn’t find it. The line
nunit-console /transform:myTransform.xslt nunit.tests.dll
is exactly what I was looking for. However, I ended up deciding to take my single TestResult.xml and parse it into two seperate outputs, a thin one and a thicker more detailed report. I am using the `msxsl.exe` application to do the transformation, and two XSL’s from CruiseControl.NET. My command (run from Ruby!) looks like:
system (‘msxsl TestResult.xml ../../../utils/AlternativeNUnitDetails.xsl -o TestResultReport.html’)
system (‘msxsl TestResult.xml ../../../utils/unittests.xsl -o TestResultSimpleReport.html’)
However, I may go back and try out the /transform option instead.