我试图从我的报告中删除一些包并遇到麻烦.
有人可以给我一些帮助吗?
我在我的蚂蚁过程中使用EMMA.
<! - 在xml和html中生成emma报告 - >
<艾玛>
<报告
源路径= “${} build.report.src”
度量= “类:${coverage.classes.min},方法:${coverage.methods.min}” >
< fileset dir =“${build.report.junit.data.dir}”>
< include name =“*.emma”/>
< /文件集>
< html outfile =“${build.report.reports} /emma/raw.html”depth =“method”/>
< xml outfile =“${build.report.tmp} /emma.xml”depth =“method”/>
< /报告>
< /艾玛>
我试过用:
< filter excludes =“com.my.package.*”/>
但没有成功:(
解决方法
Emma允许在检测阶段使用过滤器来指定需要检测的一组文件.相反,您正在尝试在报告生成阶段执行此操作.
link given above描述了如何定义检测集.
我用过这样的过滤器:
<property name="emma.filter" value="-*.unittest.* -*.unittests.* -*.TST* -*TestCase -*Test -*TestSuite" /> <emma> <instr instrpath="${build.dir}" mode="overwrite" Metadatafile="${build.dir}/coverage.em" filter="${emma.filter}" /> </emma>
您还可以使用嵌套的< filter> < instr>下的元素