Is it possible to generate a report from Visual Studio 2008's integrated unit tests? Say, one you hand off to an account manager to include in an invoice for the client. One that looks say 10% as good as this?

alt text

I ask because Rob Conery made a great video about using BDD to develop applications. And within it, he uses a 3rd party framework called Machine Specifications (or MSpec). I have gotten MSpec working quite nicely on my end. But, I do not want to introduce MSpec to the product team until this lifecycle is complete in about 6 months or so.

So, until then we are using Visual Studio's unit test. But, I REALLY love the way Machine.Specification generates those very clean HTML reports.

Is there a way to generate such reports from the built-in Visual Studio 2008 unit tests? Our bosses would love to hand off a report of our tests (in the 100s, 1000s).

Thank you in advance!

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted
+150

Apparently you can run CruiseControl with MSTest and get a build report that includes test results.

http://confluence.public.thoughtworks.org/display/CCNET/Using+CruiseControl.NET+with+MSTest

link|improve this answer
Nice option. Using XSL to style the xml log. Will investigate and get back to you. – eduncan911 Sep 29 '09 at 3:57
I went ahead and added this as the answer for the bounty at this time. – eduncan911 Oct 7 '09 at 19:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.