我之前已经测试过这个方法,但只有try
块,我不知道PHP Exceptions,我的目标是在catch块体内做一个测试单元及其所有逻辑。 / p>
public function send(User $user, Notification $notif, Request $request)
{
$client = ElephantIO\Client();
try {
$client->initialize();
$client->emit('notification', array(/*...*/));
$client->close();
} catch (ServerConnectionFailureException $e) {
//TODO:
}
}