1. 下载 cobertura-1.9.4.1.zip
2. 将cobertura.jar、lib下的jar包copy到$TOMCAT_HOME/lib下。
3. 将coberturaFlush.war copy到$TOMCAT_HOME/webapps下。
4. 编写build.properties
# The source code for the examples can be found in this directory
src.dir=/home/a/project/src/mbr_luna_subway_20120221_jan/subway-biz/src
# The path to cobertura.jar
cobertura.dir=/home/a/project/cobertura-1.9.4.1
# Classes generated by the javac compiler are deposited in this directory
classes.dir=/home/a/project/subway-bizservice/WEB-INF/classes
# Instrumented classes are deposited into this directory
instrumented.dir=/home/a/project/src/bak
# All reports go into this directory
reports.dir=/home/a/project/result
# Coverage reports are deposited into these directories
coverage.html.dir=${reports.dir}/cobertura-html
#server.bin.dir=/usr/local/dev-tomcat2.0-api-mobile/bin
server.bin.dir=/home/a/project/tomcattop_bserv/bin
serName=cobertura.ser
#flush url
flush.url=http://10.232.132.58:47080/coberturaFlush/flushCobertura
coverage.xml.dir=${reports.dir}/cobertura-xml
coverage.summaryxml.dir=${reports.dir}/cobertura-summary-xml
coverage.html.dir=${reports.dir}/cobertura-html
注意:flush.url 是你要测试的tomcat下对应的coberturaFlush.war中的servlet
5.编写build.xml
<?xml version="1.0" encoding="UTF-8"?>
<project name="cobertura.examples.basic" default="coverage-report" basedir=".">
<description>
Cobertura - http://cobertura.sourceforge.net/
Copyright (C) 2003 jcoverage ltd.
Copyright (C) 2005 Mark Doliner <thekingant@users.sourceforge.net>
Cobertura is licensed under the GNU General Public License
Cobertura comes with ABSOLUTELY NO WARRANTY
</description>
<property file="build.properties" />
<path id="cobertura.classpath">
<fileset dir="${cobertura.dir}">
<include name="*.jar" />
<include name="lib/*.jar"/>
</fileset>
</path>
<taskdef classpathref="cobertura.classpath" resource="tasks.properties"/>
<target name="init">
<mkdir dir="${classes.dir}" />
<mkdir dir="${instrumented.dir}" />
<mkdir dir="${coverage.xml.dir}" />
<mkdir dir="${coverage.html.dir}" />
</target>
<target name="instrument" depends="init">
<!--
Remove the coverage data file and any old instrumentation.
-->
<delete file="${serName}"/>
<!--
Instrument the application classes, writing the
instrumented classes into ${build.instrumented.dir}.
-->
<cobertura-instrument todir="${instrumented.dir}" datafile="${serName}">
<!--
The following line causes instrument to ignore any
source line containing a reference to log4j, for the
purposes of coverage reporting.
-->
<ignore regex="org.apache.log4j.*" />
<fileset dir="${classes.dir}">
<!--
Instrument all the application classes, but
don't instrument the test classes.
-->
<include name="**/*.class" />
</fileset>
</cobertura-instrument>
<copy todir="${classes.dir}" overwrite="true">
<fileset dir="${instrumented.dir}">
<include name="**/*.class"/>
</fileset>
</copy>
<copy file="${serName}" todir="${server.bin.dir}" overwrite="true" />
</target>
<target name="coverage-report" depends="merge">
<!--
Generate an XML file containing the coverage data using
the "srcdir" attribute.
-->
<cobertura-report datafile="total.ser" srcdir="${src.dir}" destdir="${coverage.html.dir}" format="html" />
</target>
<!--flush data to serfile-->
<target name="flush" >
<get src="${flush.url}" dest="log.txt"/>
<sleep milliseconds="3000"/>
</target>
<target name="alternate-coverage-report">
<!--
Generate a series of HTML files containing the coverage
data in a user-readable form using nested source filesets.
-->
<cobertura-report destdir="${coverage.html.dir}">
<fileset dir="${src.dir}">
<include name="**/*.java"/>
</fileset>
</cobertura-report>
</target>
<target name="merge" depends="flush">
<copy todir="${basedir}" overwrite="true">
<fileset dir="${server.bin.dir}">
<include name="**/*.ser"/>
</fileset>
</copy>
<cobertura-merge datafile="total.ser">
<fileset dir="${basedir}">
<include name="*.ser"/>
</fileset>
</cobertura-merge>
<echo message="merge file"/>
</target>
<target name="clean" description="Remove all files created by the build/test process.">
<delete dir="${classes.dir}" />
<delete dir="${instrumented.dir}" />
<delete dir="${reports.dir}" />
<delete file="cobertura.log" />
<delete file="cobertura.ser" />
</target>
</project>
6. 运行命令ant。原理:
1)将待统计的代码的class文件重新生成class,添加了统计代码的代码。
2) 运行测试用例时,会将内容统计到$TOMCAT_HOME/bin/cobertura.ser中。
3) 运行结束之后,通过调用http://10.232.132.58:47080/coberturaFlush/flushCobertura,将serverlet中统计到的信息序列化到cobertura.ser文件中。
4) 最后通过cobertura-report.sh 这个命令生成报告。
7. 运行测试用例。
8. 重新运行ant命令,生成测试报告。
分享到:
相关推荐
1. **安装**:首先,你需要下载 Cobertura 的二进制包(cobertura-1.9.4.1-bin.zip),解压后将其添加到你的系统路径中。 2. **配置**:然后在你的项目中配置 Cobertura,通常是在构建脚本(如 Maven 或 Gradle)中...
这个"cobertura-1.9.4.1-src.zip"压缩包包含的是Cobertura 1.9.4.1版本的源代码。源代码是任何软件开发的基础,它允许开发者深入理解软件的工作原理,并对其进行修改或扩展。 Cobertura的主要功能是跟踪Java程序...
标题 "cobertura-1.9.4.1-bin.zip" 提供的信息暗示了这是一个与 Cobertura 工具相关的软件发行版,版本号为 1.9.4.1,且包含的是可执行文件(bin)的集合。Cobertura 是一个用于 Java 代码覆盖率测试的工具,它能够...
java运行依赖jar包
jar包,官方版本,自测可用
cobertura-2.1.1.jar下载
离线安装包,亲测可用
离线安装包,测试可用
jar包,官方版本,自测可用
总结起来,`lcov_cobertura-1.3.macosx-10.8-intel.exe`是一个用于C/C++项目的测试覆盖率分析工具,它能帮助开发者生成详尽的测试覆盖率报告,从而提升软件的质量和可靠性。尽管它不是直接针对Python的,但对于多...
资源来自pypi官网。 资源全名:lcov_cobertura-1.3.macosx-10.8-intel.exe
jar包,官方版本,自测可用
jar包,官方版本,自测可用
jar包,官方版本,自测可用
cobertura基于sonar插件,可用于分析单元测试执行结果
5. 生成报告:最后,使用`cobertura-report`任务生成HTML格式的覆盖率报告,这将清晰地展示每一行代码的执行情况,包括被测试、未被测试以及测试覆盖率百分比。 `Readme-说明.htm`文件通常包含关于如何安装、配置和...
首先,“gradle-cobertura-plugin-1.0.zip”是Gradle Cobertura插件的一个版本,Cobertura是一个开源的Java代码覆盖率工具,它能够帮助开发者衡量他们的测试代码覆盖了多少源代码。Gradle是继Maven之后的另一个流行...
sonar-cobertura-plugin-1.7.jar,拷贝到sonarqube/extensions/plugins/目录下,重启sonar就可以了
jar包,官方版本,自测可用