OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
znew1aws-ses
/
vendor
/
guzzlehttp
/
guzzle
/
tests
/
Handler
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/16/2024 08:30:17 AM
rwxr-xr-x
📄
CurlFactoryTest.php
35.2 KB
08/16/2024 08:30:17 AM
rw-r--r--
📄
CurlHandlerTest.php
2.83 KB
08/16/2024 08:30:17 AM
rw-r--r--
📄
CurlMultiHandlerTest.php
3.99 KB
08/16/2024 08:30:17 AM
rw-r--r--
📄
EasyHandleTest.php
510 bytes
08/16/2024 08:30:17 AM
rw-r--r--
📄
MockHandlerTest.php
8.1 KB
08/16/2024 08:30:17 AM
rw-r--r--
📁
Network
-
08/16/2024 08:32:40 AM
rwxr-xr-x
📄
ProxyTest.php
2.1 KB
08/16/2024 08:30:17 AM
rw-r--r--
📄
StreamHandlerTest.php
28.43 KB
08/16/2024 08:30:17 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; } }