<?php namespace GuzzleHttp\Test\Handler; use GuzzleHttp\Handler\EasyHandle; use PHPUnit\Framework\TestCase; /** * @covers \GuzzleHttp\Handler\EasyHandle */ class EasyHandleTest extends TestCase { public function testEnsuresHandleExists() { $easy = new EasyHandle; unset($easy->handle); $this->expectException(\BadMethodCallException::class); $this->expectExceptionMessage('The EasyHandle has been released'); $easy->handle; } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
Network | Folder | 0755 |
|
|
CurlFactoryTest.php | File | 33.56 KB | 0644 |
|
CurlHandlerTest.php | File | 2.83 KB | 0644 |
|
CurlMultiHandlerTest.php | File | 3.99 KB | 0644 |
|
EasyHandleTest.php | File | 508 B | 0644 |
|
MockHandlerTest.php | File | 8.11 KB | 0644 |
|
ProxyTest.php | File | 2.1 KB | 0644 |
|
StreamHandlerTest.php | File | 26.79 KB | 0644 |
|