Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Code Coverage and Blame

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?

like image 949
kͩeͣmͮpͥ ͩ Avatar asked Oct 09 '08 12:10

kͩeͣmͮpͥ ͩ


2 Answers

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

like image 169
Chris Kimpton Avatar answered Sep 19 '22 21:09

Chris Kimpton


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.

like image 24
ema Avatar answered Sep 16 '22 21:09

ema