OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
reader
/
aws-ses
/
vendor
/
guzzlehttp
/
guzzle
/
tests
/
Handler
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/19/2025 10:07:14 AM
rwxr-xr-x
📄
CurlFactoryTest.php
35.2 KB
05/19/2025 10:07:14 AM
rw-r--r--
📄
CurlHandlerTest.php
2.83 KB
05/19/2025 10:07:14 AM
rw-r--r--
📄
CurlMultiHandlerTest.php
3.99 KB
05/19/2025 10:07:14 AM
rw-r--r--
📄
EasyHandleTest.php
510 bytes
05/19/2025 10:07:14 AM
rw-r--r--
📄
MockHandlerTest.php
8.1 KB
05/19/2025 10:07:14 AM
rw-r--r--
📁
Network
-
05/19/2025 10:07:14 AM
rwxr-xr-x
📄
ProxyTest.php
2.1 KB
05/19/2025 10:07:14 AM
rw-r--r--
📄
StreamHandlerTest.php
28.43 KB
05/19/2025 10:07:14 AM
rw-r--r--
Editing: EasyHandleTest.php
Close
<?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; } }