我试图使用phpUnit注释来捕获异常:
/**
* @expectedException Drupal\apple_news\Api\Exception\ApiException.
*/
public function testDecodeResponse() {
$this->client->decodeResponse('');
}
似乎没问题,事实上如果我使用setExpectedException工作正常,但我得到:
ReflectionException: Class Drupal\apple_news\Api\Exception\ApiException. does not exist
知道为什么会这样吗?
谢谢。
答案 0 :(得分:3)
删除一个点。
/**
* @expectedException Drupal\apple_news\Api\Exception\ApiException // <- here
*/