我第一次尝试一些代码覆盖率分析,我正在使用ANT获得cobertura。我的问题可能很傻,但我想在这里问一下。我的ANT脚本中有以下代码。在通读cobertura的过程中,下一步是仪器。什么是代码覆盖检测?
<target name="cobertura" depends="checkstyle">
<property name="cobertura.dir" location="C:\Softwares- packages\Corbetura\cobertura-1.9.4.1" />
<path id ="cobertura.classpath">
<fileset dir="${cobertura.dir}">
<include name="cobertura.jar"/>
<include name="lib/**/*.jar"/>
</fileset>
</path>
<taskdef resource="tasks.properties" classpathref="cobertura.classpath"/>
</target>
cobertura修改您的类文件,以便它可以计算覆盖率。我通常会将用于执行测试的jar文件副本"instrument",并使用未被instrument的副本作为构建工件。
这是我第一次通过ant设置cobertura时使用的构建文件:
cobertura-instrument目标检测我的代码,并像您所说的那样将被检测的类写入单独的目录。
单元目标编译测试,然后对测试进行检测,然后运行测试,然后生成报告。这些步骤都是通过向junit声明依赖目标来完成的。
<path id="cobertura.classpath">
<fileset dir="${cobertura.dir}">
<include name="cobertura.jar" />
<include name="lib/**/*.jar" />
</fileset>
</path>
<taskdef classpathref="cobertura.classpath" resource="tasks.properties" />
<!-- Delete an existing coburtura datafile -->
<delete file="${cobertura.datafile}"/>
<antcall target="cobertura.clean"/>
<!-- Instrument the code with cobertura to test for coverage -->
<cobertura-instrument todir="${cobertura.instrumented.classes}" datafile="${cobertura.datafile}">
<fileset dir="${build.dir}/classes/">
<include name="**/*.class"/>
</fileset>
</cobertura-instrument>
<fileset dir="${src.dir}">
<include name="**/*.java" />
</fileset>
<fileset dir="${tests.src.dir}">
<include name="**/*.java" />
</fileset>
我相信你正在寻找"cobertura-instrument"任务。看到