InterviewSolution
Saved Bookmarks
| 1. |
How code coverage is measured/tracked using Jenkins in a CI environment? |
|
Answer» Using language-specific code COVERAGE plugins LIKE JaCoCo, CodeCov, etc or generic tools/plugins like Sonarqube which will add the code coverage data to builds with some minor TWEAKS in the code and the same can be DISPLAYED as a GRAPH in Jenkins. |
|