I couldn't find information in the user group or via google, but my question is about an export format in the LCOV format.
I am able to successfully generate code coverage from JaCoCo but I'd like to see the code coverage reports within the IDE (in this case, Visual studio Code).
There are IDE plugins that will show highlights of the un-covered code (such as
Coverage Gutters) but this depends on the coverage data being stored in the 'lcov format'.
Is there a way to get the native format from jacoco-ut-exec into the lcov format for use in these other tools?
Thanks!