我正在运行一个庞大的 phPunit 测试套件,我希望看到哪个测试一失败就失败,而不是等待所有测试完成,然后让它列出所有的失败。
我怎么能让 PPunit 这么做呢?
将 stopOnFailure="true"属性添加到 phpunit.xml根元素。
stopOnFailure="true"
phpunit.xml
您也可以在 CLI: phpunit --stop-on-failure中使用它
phpunit --stop-on-failure
手册中的信息和其他一些可能对你有用的信息:
更多信息: PHPUnit 手册