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
文件下载
文件名 操作
cobertura-1.9rc1.jar 下载
cobertura-1.9rc1.pom 下载
cobertura-1.9rc1-sources.jar 下载
Apache Maven
<dependency>
  <groupId>net.sourceforge.cobertura</groupId>
  <artifactId>cobertura</artifactId>
  <version>1.9rc1</version>
</dependency>
Gradle Groovy
implementation 'net.sourceforge.cobertura:cobertura:1.9rc1'
Gradle Kotlin
implementation("net.sourceforge.cobertura:cobertura:1.9rc1")
Scala SBT
libraryDependencies += "net.sourceforge.cobertura" % "cobertura" % "1.9rc1"
Groovy Grape
@Grapes(
  @Grab(group='net.sourceforge.cobertura', module='cobertura', version='1.9rc1')
)
Apache Ivy
<dependency org="net.sourceforge.cobertura" name="cobertura" rev="1.9rc1" />
Leiningen
[net.sourceforge.cobertura/cobertura "1.9rc1"]
Apache Buildr
'net.sourceforge.cobertura:cobertura:jar:1.9rc1'