a issue of PHPUnit

In the class PHPUnit_Framework_TestCase, line 352

        if ($this->name === NULL) {
            throw new PHPUnit_Framework_Error(
              ‘PHPUnit_Framework_TestCase::$name must not be NULL.’
            );
        }

If the var $this->name is NULL, it throws the exception PHPUnit_Framework_Error.
But, the PHPUnit_Framework_Error’s constructor is (line 77):

    public function __construct($message, $code, $file, $line, $trace)

如果捉虫能拿奖金,我可能已经是百万富翁了。闷,搞了半天,才发现原来是个 issue。再做回善事,发到 PHPUnit 的 mail list上吧。

Leave a comment

Your email address will not be published. Required fields are marked *