gpt4 book ai didi

php - 在 PHPUnit 中重新运行上次失败的测试

转载 作者:可可西里 更新时间:2023-10-31 22:12:09 26 4
gpt4 key购买 nike

您可以使用 --stop-on-failure 标志在其中一个测试失败时中断单元测试。

有什么方法可以让 PHPUnit 重新运行这个失败的测试,而不是手动提供完整路径?

最佳答案

Since PHPUnit 7.3 ,您可以缓存测试结果,然后按缺陷对测试进行排序。

在 phpunit.xml 中,启用 cacheResults:

<?xml version="1.0" encoding="UTF-8"?>
<phpunit cacheResult="true"
...>

如果您不想编辑 phpunit.xml,您也可以使用 --cache-result 标志运行测试。

缓存结果时,PHPUnit 会在运行测试后创建一个.phpunit.result.cache 文件。确保将此文件添加到全局 gitignore 文件中。

您可以像这样运行测试以先运行之前失败的测试:

phpunit --order-by=defects --stop-on-failure

关于php - 在 PHPUnit 中重新运行上次失败的测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7119886/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com