Code coverage tool for tests

The project that me and my colleagues are working on is a multithreaded C++ client-server application (we use MSVC as our compiler).

We do not have unit tests, all of the tests are in a separate project that uses the public SDK which is in a different programming language. In the tests, the test is the client and it makes requests to the server through sockets.

Are there any tools to measure the code coverage of such tests?

The code coverage tools I've seen require the tests to be unit tests such as the ones of Boost Test Library and Google Test.
Last edited on
There is bullseye coverage but i dont think its free
Topic archived. No new replies allowed.