I am using VC ++ 2005 and 2008 for a project. Now I want to see if the unit test case covers the entire code, and have discovered a problem. We use Boost.Test for unit testing, and each file is designed to test a specific function or method. Each file is compiled into a separate executable file.
I can view the results for each executable in Visual Studio. I am really interested in looking at the overall coverage of the code with all the combined tests. Is there a way to combine code coverage results?
source
share