/**
  * @covers Exads\Client
  * @test
  */
 public function response_should_be_0_by_default()
 {
     $client = new Client('http://localhost');
     $this->assertEquals(0, $client->getResponseCode());
 }