I generated a code coverage report from jacoco, which is jacoco.exec. But I don\'t know how to use it ...
The way I generated it is through command line:
Jacoco provides a command line lib to process jacoco.exec
data: Jacoco cli doc
After you install Jacoco, you can generate report with following command:
java -jar lib/jacococli.jar report jacoco.exec \
--html ./report \
--sourcefiles [path/to/your/source/files] \
--classfiles [path/to/your/class/files]