[cobertura-report] Cobertura: Error reading file /opt//cobertura.ser: cobertura.ser

解决办法:

定义target,向生成的java.class里插入instrumentation,test.class将不插入instrumentation,因为我们不关心测试用例本身的覆盖率。

<targetname="instrument">
  1. <!--Removethecoveragedatafileandanyoldinstrumentationclasses-->
  2. <deletefile="cobertura.ser"/>
  3. <deletedir="${instrumented.classes.dir}"/>
  4. <!--Instrumenttheapplicationclasses,writingtheinstrumentedclassesinto${instrumented.classes.dir}-->
  5. <cobertura-instrumenttodir="${instrumented.classes.dir}">
  6. <!--Thefollowinglinecausesinstrumenttoignoreanysourcelinecontainingareferencetolog4j,forthepurposeofcoveragereporting-->
  7. <ignoreregex="org.apache.log4j.*"/>
  8. <filesetdir="${src.java.classes.dir}">
  9. <includename="**/*.class"/>
  10. </fileset>
  11. </cobertura-instrument>
  12. </target>

注:instrumented.classes.dir存在所有被植入instrumentation的Java class。如果java代码和测试用例被编译到了同一个目录下,可以使用如<exclude name="**/*Test.class" />忽略测试用例。

你可能感兴趣的:(reading)