Mmoreram\tests\Visithor\Client\GuzzleClientTest::testClient PHP Method

testClient() public method

Test client
public testClient ( )
    public function testClient()
    {
        $client = new GuzzleClient();
        $client->buildClient();
        $url = new Url('http://google.es', [301], []);
        $result = $client->getResponseHTTPCode($url);
        $this->assertEquals(301, $result);
    }
GuzzleClientTest