Phing 的 Clover 覆盖范围
有没有办法让 Phing 以三叶草格式输出其覆盖率报告?
我知道 phpunit 有 --coverage-clover 但我不知道如何从 Phing 启用此选项。
我不想手动使用
我正在使用 Phing 2.4RC2
谢谢。
Is there a way to get Phing to output it's coverage report in clover format?
I know phpunit has --coverage-clover but I don't know how to enable this option from Phing.
I do not want to manually use the <exec command - it defeats the point of Phing.
I am using Phing 2.4RC2
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Phing 从 2.4 版本开始支持输出为 clover 格式,请参阅 http://www .phing.info/docs/stable/hlhtml/index.html#d5e12507
Phing supports output to clover format from version 2.4, see http://www.phing.info/docs/stable/hlhtml/index.html#d5e12507
我做了一些研究,发现 Phing 不支持 Clover 覆盖,您必须使用 exec。
这是我的执行命令:
I did some research and Phing doesn't support Clover coverage, you have to use exec.
Here is my exec command:
<exec command="phpunit --bootstrap=${project}/test/bootstrap.php --log-junit ${report}/logfile.xml --coverage-clover ${report}/coverage/clover.xml --coverage-source ${report}/coverage --coverage-html ${report}/coverage-html/ ${project}test/*"/>