如何告诉phpunit停止失败


98

我正在运行大量的phpunit测试,我想看看哪个测试在失败后立即失败,而不是等待所有测试完成然后列出所有失败。

我怎样才能告诉phpunit做到这一点?

Answers:


168

stopOnFailure="true"属性添加到您的phpunit.xml根元素。

您也可以在CLI中使用它: phpunit --stop-on-failure

来自手册和其他一些可能对您有用的信息:

  • stopOnError-“在第一个错误时停止执行。”
  • stopOnFailure-“在第一次错误或失败时停止执行。”
  • stopOnIncomplete-“在第一次未完成的测试时停止执行。”

更多信息,请参见PHPunit手册

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.