AFAIK, there isn't a free code coverage tool for C++.
|
closed as not a real question by Ram kiran, gotnull, DocMax, Deefour, valex Dec 17 '12 at 5:29
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Where I work, we are using a customized version of Covtool. |
|||
|
|
|
gcov from the gnu-compiler works very well for me... |
|||||||
|
|
Btw - since I've been asked in the comments: Yes, gcov it's also availabe for windows. You just have to install the "unix like environment" called cygwin. The gnu-compiler is part of that. It works fine and will compile windows-applications as well. You may have to write a makefile though. www.cygwin.com |
|||||
|
|
I have used Test Cocoon and it works fairly well. Free under the GNU license. The documentation is somewhat sparse, but it comes with sample projects that are fairly straight forward to follow. Good coverage analysis, plus the ability to monitor running code without a test harness so you can do manual testing to get coverage results. |
|||||
|
|
|
You may also want to look at specific tools or options for the testing framework that is being used. Is there a specific framework you are already using? |
|||
|
|