在 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
相关文章