scratch

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 86  →  ?path2? @ 87
/vendor/guzzlehttp/guzzle/tests/Exception/ParseExceptionTest.php
@@ -0,0 +1,20 @@
<?php
 
namespace GuzzleHttp\Tests\Event;
 
use GuzzleHttp\Exception\ParseException;
use GuzzleHttp\Message\Response;
 
/**
* @covers GuzzleHttp\Exception\ParseException
*/
class ParseExceptionTest extends \PHPUnit_Framework_TestCase
{
public function testHasResponse()
{
$res = new Response(200);
$e = new ParseException('foo', $res);
$this->assertSame($res, $e->getResponse());
$this->assertEquals('foo', $e->getMessage());
}
}