1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26:
<?php
namespace GuzzleHttp\Tests\Event;
use GuzzleHttp\Exception\ConnectException;
use GuzzleHttp\Psr7\Request;
use PHPUnit\Framework\TestCase;
class ConnectExceptionTest extends TestCase
{
public function testHasNoResponse()
{
$req = new Request('GET', '/');
$prev = new \Exception();
$e = new ConnectException('foo', $req, $prev, ['foo' => 'bar']);
$this->assertSame($req, $e->getRequest());
$this->assertNull($e->getResponse());
$this->assertFalse($e->hasResponse());
$this->assertEquals('foo', $e->getMessage());
$this->assertEquals('bar', $e->getHandlerContext()['foo']);
$this->assertSame($prev, $e->getPrevious());
}
}