public function testWrapsCurlOptions()
 {
     $handle = curl_init($this->getServer()->getUrl());
     $h = new CurlHandle($handle, array(CURLOPT_AUTOREFERER => true, CURLOPT_BUFFERSIZE => 1024));
     $this->assertEquals(true, $h->getOptions()->get(CURLOPT_AUTOREFERER));
     $this->assertEquals(1024, $h->getOptions()->get(CURLOPT_BUFFERSIZE));
 }