PATH:
home
/
thecwrif
/
public_html
/
wp-content
/
plugins
/
w3-total-cache
/
vendor
/
guzzlehttp
/
guzzle
/
tests
/
Handler
<?php namespace GuzzleHttp\Test\Handler; use GuzzleHttp\Handler\EasyHandle; use GuzzleHttp\Psr7; use PHPUnit\Framework\TestCase; /** * @covers \GuzzleHttp\Handler\EasyHandle */ class EasyHandleTest extends TestCase { /** * @expectedException \BadMethodCallException * @expectedExceptionMessage The EasyHandle has been released */ public function testEnsuresHandleExists() { $easy = new EasyHandle; unset($easy->handle); $easy->handle; } }
[-] StreamHandlerTest.php
[edit]
[-] CurlHandlerTest.php
[edit]
[-] EasyHandleTest.php
[edit]
[-] MockHandlerTest.php
[edit]
[-] CurlMultiHandlerTest.php
[edit]
[+]
..
[-] CurlFactoryTest.php
[edit]
[-] ProxyTest.php
[edit]