/**
  * @test
  */
 public function shouldBeAbleToSetOption()
 {
     $httpClient = new TestHttpClient(array(), $this->getBrowserMock());
     $httpClient->setOption('timeout', 666);
     $this->assertEquals(666, $httpClient->getOption('timeout'));
 }