Hi,
I have a C++ library with a set of unit tests that exercise the functions and classes in the library. I'm attempting to use codecov to give some feedback on the percentage of the library that is covered with the test cases. However, it looks as though codecov does not give results for inline functions unless they are instantiated and the compiler generates code for them.
Is this correct? If so, is there a good work around short of generating test cases for all of the inline functions, which soft of defeats the purpose of using codecov to view coverage results as test cases are added and the library evolves.
Thanks,
-Simon