March 2018
Intermediate to advanced
324 pages
8h 30m
English
Java Code Coverage (JaCoCo) is a well-known tool for measuring test coverage. To use it in our project, we need to add a few lines to our Gradle configuration file, that is, build.gradle:
apply plugin: 'jacoco'
gradle test jacocoTestReport

Further chapters of this book will explore code coverage in more detail. Until then, go to ...
Read now
Unlock full access