<?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; } }