Re-run last failed test in PHPUnit(在 PHPUnit 中重新运行上次失败的测试)
问题描述
当其中一个测试失败时,您可以使用 --stop-on-failure
标志来中断单元测试.
You may use --stop-on-failure
flag to break the unit testing when one of the tests fails.
有什么方法可以快速告诉 PHPUnit 重新运行这个失败的测试,而不是手动提供完整路径?
Is there any way quick way to tell PHPUnit to re-run this failed test, instead providing the full path manually?
推荐答案
看看 --filter
cli 选项.您可以在 组织文档代码>
并在 CLI 文档
.
Take a look at the --filter
cli option. You can find an example in the organisation docs
and in the CLI Docs
.
--过滤
仅运行名称与给定模式匹配的测试.模式可以是单个测试的名称,也可以是匹配多个测试名称的正则表达式.
Only runs tests whose name matches the given pattern. The pattern can be either the name of a single test or a regular expression that matches multiple test names.
假设您的运行 phpunit Tests/
和 Tests/Stuff/ThatOneTestClassAgain::testThisWorks
失败:
Assume your run phpunit Tests/
and Tests/Stuff/ThatOneTestClassAgain::testThisWorks
fails:
您的选择是:
phpunit --filter ThatOneTestClassAgain
和
phpunit --filter testThisWorks
或大多数其他有意义的字符串
or most other strings that somehow make sense
这篇关于在 PHPUnit 中重新运行上次失败的测试的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 PHPUnit 中重新运行上次失败的测试


- 带有通配符的 Laravel 验证器 2021-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- Laravel 仓库 2022-01-01