8

Has anyone seen a tool that will integrate code coverage results with SCM/VCS to attribute untested lines of code to developers? For example, is there a tool that will take NCover's Coverage.Xml, combine it with SVN blame, and produce a report that tells me things like developer who commits most untested code?

matt b
  • 138,234
  • 66
  • 282
  • 345
kͩeͣmͮpͥ ͩ
  • 7,783
  • 26
  • 40

2 Answers2

1

not done this but team city offers some facilities along those lines...

Chris Kimpton
  • 5,546
  • 6
  • 45
  • 72
1

I use CC.NET (ccnet.thoughtworks.com/) and NANT to evaluate code coverage of my applications. By default it is not tied to the developers commits but I think that it would not be difficult to create a NANT Task that do it.

ema
  • 5,668
  • 1
  • 25
  • 31