vote up 3 vote down star
3

Is this possible? I am looking forward to a tutorial which explains the steps to achieve this.

flag

0% accept rate
edited to add .net tag – Marc Gravell Oct 22 '08 at 10:01

4 Answers

vote up 6 vote down

TestDriven.NET has the ability to test (NUnit/MSTest/etc) with Team Coverage (which you already have since you have Team System : Dev).

Walkthrough: here (you also get the coverage results window for looking at the coverage per method) - but this says it all:

Using TestDriven.NET with Team Coverage

You can use NUnit tests, but use the MS IDE integration for colorization, percentagaes, etc (no need for NCover). I use this all the time ;-p

The advantages are:

  • no need to set up a "Test Run Configuration" (sorry, MSFT, but an own-goal there)
  • fully integrated with VS (Code Coverage Results and Coloring)
  • easy to use (just right-click -> Test With -> Team Coverage)
  • easy to debug too (right-click -> Test With -> Debugger)
  • easy to use the separate NUnit/NCover apps if you want (right-click etc)
link|flag
vote up 1 vote down

Here's a tutorial on integrating NCover with MSBuild. Here's a tutorial on how to tell Team Build to fail a build when NCover reports code coverage below a minimum threshold. To my knowledge there isn't yet a way to publish your NCover results directly to the TFS data warehouse, but I'd love someone to prove me wrong.

link|flag
vote up 0 vote down

TestDriven.NET will also work very well with NCover. You can get some very nice html reports out of NCover, and you can integrate it with Nant.

link|flag
vote up 0 vote down

Thanks for the responses. But, I am looking for a specific tutorial or equivalent, which will help me to:

  • do code coverage using Visual Studio Team System 2008 Developer Edition on an NUnit application
link|flag
step 1: install TestDriven.NET, step 2: right-click->Test->(various). What more do you want? – Marc Gravell Oct 22 '08 at 10:26
I've added a walkthrough to my reply – Marc Gravell Oct 22 '08 at 10:30

Your Answer

Get an OpenID
or

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