我如何获得有关 phpunit 和 phing 结果的失败详细信息

发布于 2024-10-30 18:05:46 字数 92 浏览 3 评论 0原文

[phpunit] 测试运行:415,失败:13,错误:19,不完整:0,跳过:0,已用时间:45.19617

我想了解有关失败和错误的详细信息,怎么办?

[phpunit] Tests run: 415, Failures: 13, Errors: 19, Incomplete: 0, Skipped: 0, Time elapsed: 45.19617 s

i wanna find out the details about failures and errors,how do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

带刺的爱情 2024-11-06 18:05:46

你能发布你的构建文件吗?

无论如何,要让 phpunit 任务输出附加信息,请在任务调用中使用“plain”格式化程序:

<phpunit ...>
    <formatter usefile="false" type="plain"/>
    <batchtest>
    ...
    </batchtest>
</phpunit>

Can you post your build file?

In any case, to have the phpunit task output additional information, use the 'plain' formatter in the task call:

<phpunit ...>
    <formatter usefile="false" type="plain"/>
    <batchtest>
    ...
    </batchtest>
</phpunit>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文