为什么error_log仅使用phpunit的--process-isolation生成RuntimeException

时间:2013-04-19 06:13:53

标签: php unit-testing exception testing phpunit

我进行了一些测试,测试的代码输出了一些error_log信息(因为我正在测试失败,这是预期的)

e.g。

<?php
Class X {
    function dosomething(){
            error_log('did it');
            return true;
    }
}

和测试:

<?php
require_once 'X.php';
class xTest extends PHPUnit_Framework_TestCase {
    public function testDo(){
            $x = new X();
            $this->assertTrue( $x->dosomething(), 'dosomething returns true');
    }
}

当在没有 --process-isolation的php_unit 上运行时,给我一个不错的.以及我正在测试的传递。

然而,当使用 --process-isolation运行时,我得到:

1) test::a with data set #1 'a'
RuntimeException: did it

为什么会这样?我坚持使用版本3.4.12(不能做太多关于它)但在更新日志中没有找到任何有趣的内容。

这是一个示例会话:

xxx$ phpunit xTest.php
PHPUnit 3.4.12 by Sebastian Bergmann.

did it
.

Time: 0 seconds, Memory: 4.50Mb

OK (1 test, 1 assertion)

shell return code: 0
xxx$ phpunit --process-isolation xTest.php
PHPUnit 3.4.12 by Sebastian Bergmann.

E

Time: 0 seconds, Memory: 4.50Mb

There was 1 error:

1) xTest::testDo
RuntimeException: did it


FAILURES!
Tests: 1, Assertions: 0, Errors: 1.

shell return code: 2

编辑:我正在搜索“phpunit runtimeexception error_log”,并在提交之后5秒,它已经是最热门的搜索结果:(那里没有任何关于它的内容。

但是我来这里编辑并说出来: 添加$this->setExpectedException('RuntimeException');绝对没有什么可以抓住这个。同样的结果发生了。

1 个答案:

答案 0 :(得分:1)

我的猜测是外部和内部进程中error_log配置之间存在差异。默认情况下,从CLI运行error_log()时,它将写入stderr并导致测试失败。你需要做的是找出存在差异的原因。我猜你有一些代码在外部进程中运行,这些代码改变了这个没有在内部运行的配置。