public function ClientTest::testCreatesDefaultClient in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/fabpot/goutte/Goutte/Tests/ClientTest.php \Goutte\Tests\ClientTest::testCreatesDefaultClient()
File
- vendor/
fabpot/ goutte/ Goutte/ Tests/ ClientTest.php, line 49
Class
- ClientTest
- Goutte Client Test.
Namespace
Goutte\TestsCode
public function testCreatesDefaultClient() {
$client = new Client();
$this
->assertInstanceOf('GuzzleHttp\\ClientInterface', $client
->getClient());
}