You are here

public function ClientTest::testCreatesDefaultClient in Zircon Profile 8

Same name and namespace in other branches
  1. 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\Tests

Code

public function testCreatesDefaultClient() {
  $client = new Client();
  $this
    ->assertInstanceOf('GuzzleHttp\\ClientInterface', $client
    ->getClient());
}