在某些因警告而失败的测试中调用PHPunit时,我得到:
$ phpunit -c phpunit.xml --group app
Warning - MongoCollection::insert(): expects parameter 1 to be an array or object, null given in ...
<more output>
OK, but incomplete or skipped tests!
Tests: 17, Assertions: 81, Incomplete: 1.
其中一项测试应该失败,但事实并非如此; PHPunit将其标记为&#34;不完整&#34;。
让我们检查最后退出状态:
$ echo $?
0
我使用的配置是:
<phpunit
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
strict="true"
stopOnError="true"
stopOnFailure="true"
stopOnIncomplete="true"
stopOnSkipped="true"
colors="true"
bootstrap="bootstrap_phpunit.php"
>
任何想法如何强制PHPunit在&#34;不完整&#34;的情况下发出非零退出状态测试
答案 0 :(得分:0)
感谢gontrollez,我开始研究错误处理程序,最后找到了解决方案:
set_error_handler(function ($severity, $message, $filepath, $line)
{
throw new Exception($severity." - ".$message." - ".$filepath." - ".$line);
});
此代码抛出异常,导致PHPunit正确地将测试检测为failed
而不是incomplete
。它应放在bootstrap_phpunit.php
中的某个位置(即在文件中,指定为bootstrap
文件)。