Eclipse 用ant生成junit测试的 coverage report

J2EE 码拜 10年前 (2015-04-12) 1960次浏览 0个评论
 

如题,在eclipse环境下具体要怎么生成coverage report,有什么简单的方法吗?

Eclipse 用ant生成junit测试的  coverage report
我用ant跑build。xml时,出现如下错误:
   [junit] Test TestDie FAILED
[junitreport] Processing E:\eclipse workspace\Homework1\TESTS-TestSuites.xml to C:\Users\ADMINI~1\AppData\Local\Temp\null1952090219
[junitreport] Loading stylesheet jar:file:/D:/eclipse/plugins/org.apache.ant_1.8.3.v20120321-1730/lib/ant-junit.jar!/org/apache/tools/ant/taskdefs/optional/junit/xsl/junit-frames.xsl
[junitreport] : Error! 非 static Java 函数“replace”的第一个自变量不是有效的对象参考。
[junitreport] : Error! 无法将数据类型“void”转换成“reference”。
[junitreport] : Fatal Error! 无法编译样式表
[junitreport] Failed to process E:\eclipse workspace\Homework1\TESTS-TestSuites.xml

BUILD FAILED

这是出错处的代码:
<junit fork=”yes” dir=”${basedir}” haltonerror=”no” failureProperty=”test.failed”>
<!–
     Note the classpath order: instrumented classes are before the
     original (uninstrumented) classes.  This is important.
    –>
<classpath location=”${instrumented.dir}” />
<classpath location=”${classes.dir}” />
<classpath location=”${test.classes.dir}” />
<!–
     The instrumented classes reference classes used by the
     Cobertura runtime, so Cobertura and its dependencies
     must be on your classpath.
    –>
<classpath refid=”cobertura.classpath” />

<formatter type=”xml” />
<test name=”${testcase}” todir=”${reports.xml.dir}” if=”testcase” />
<batchtest todir=”${reports.xml.dir}” unless=”testcase”>
<fileset dir=”${test.dir}”>
<include name=”**/Test*.java” />
</fileset>
</batchtest>
</junit>

这是哪里出了问题,求高手解释!谢谢

Eclipse 用ant生成junit测试的  coverage report
20分
我也遇到同样的问题了,请问楼主解决了么?
Eclipse 用ant生成junit测试的  coverage report
把jdk降到5就可以了。。。。
Eclipse 用ant生成junit测试的  coverage report
解决办法为:
1.确保你的jdk的路径配置正确,需要配置jre的路径即path和classpath 
2.不能直接在Eclipse中ant执行build,需要进入到该项目的根目录,然后执行ant命令即可
Eclipse 用ant生成junit测试的  coverage report
 我也遇到了,不用Eclipse好着了,一用Eclipse就不行了,到目前为止没解决。

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明Eclipse 用ant生成junit测试的 coverage report
喜欢 (0)
[1034331897@qq.com]
分享 (0)

文章评论已关闭!