c

cobertura

Cobertura is a free Java tool that calculates the percentage of code accessed by tests. It can be used to identify which parts of your Java program are lacking test coverage. It is based on jcoverage.
http://cobertura.sourceforge.net
The GNU General Public License, Version 2
Files download
File Operation
cobertura-1.9.3.jar download
cobertura-1.9.3.pom download
cobertura-1.9.3-sources.jar download
Apache Maven
<dependency>
  <groupId>net.sourceforge.cobertura</groupId>
  <artifactId>cobertura</artifactId>
  <version>1.9.3</version>
</dependency>
Gradle Groovy
implementation 'net.sourceforge.cobertura:cobertura:1.9.3'
Gradle Kotlin
implementation("net.sourceforge.cobertura:cobertura:1.9.3")
Scala SBT
libraryDependencies += "net.sourceforge.cobertura" % "cobertura" % "1.9.3"
Groovy Grape
@Grapes(
  @Grab(group='net.sourceforge.cobertura', module='cobertura', version='1.9.3')
)
Apache Ivy
<dependency org="net.sourceforge.cobertura" name="cobertura" rev="1.9.3" />
Leiningen
[net.sourceforge.cobertura/cobertura "1.9.3"]
Apache Buildr
'net.sourceforge.cobertura:cobertura:jar:1.9.3'