onlyGuzzle5(); HttpClientCache::setHttpClient(null); $handler = HttpHandlerFactory::build(); $this->assertInstanceOf('Google\Auth\HttpHandler\Guzzle5HttpHandler', $handler); } public function testBuildsGuzzle6Handler() { $this->onlyGuzzle6(); HttpClientCache::setHttpClient(null); $handler = HttpHandlerFactory::build(); $this->assertInstanceOf('Google\Auth\HttpHandler\Guzzle6HttpHandler', $handler); } }