如何使PHPunit在警告时返回非零退出状态

时间:2014-06-19 11:52:41

标签: php phpunit

在某些因警告而失败的测试中调用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;的情况下发出非零退出状态测试

1 个答案:

答案 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文件)。