我编写了一个 PHPUnit 测试,用于检查调用方法时是否从闭包中抛出异常。闭包函数作为参数传递给该方法,并从中引发异常。
public function testExceptionThrownFromClosure()
{
try {
$this->_externalResourceTemplate->get(
$this->_expectedUrl,
$this->_paramsOne,
function ($anything) {
throw new Some_Exception('message');
}
);
$this->fail("Expected exception has not been found");
} catch (Some_Exception $e) {
var_dump($e->getMessage()); die;
}
}
ExternalResourceTemplate 上指定的 get 函数的代码是
public function get($url, $params, $closure)
{
try {
$this->_getHttpClient()->setUri($url);
foreach ($params as $key => $value) {
$this->_getHttpClient()->setParameterGet($key, $value);
}
$response = $this->_getHttpClient()->request();
return $closure($response->getBody());
} catch (Exception $e) {
//Log
//Monitor
}
}
任何想法为什么调用失败断言语句?你能不能捕捉到 PHP 中的闭包引发的异常,或者是否有一种我不知道的特定方法来处理它们。
对我来说,异常应该只是传播出返回堆栈,但它似乎没有。这是一个错误吗?仅供参考,我正在运行 PHP 5.3.3