public function testCacheVerbose()
 {
     $this->expectOutputRegex('/./');
     $this->scraper->verboseOn();
     $this->scraper->cacheOn();
     $this->scraper->setCacheDir(vfsStream::setup()->url());
     $this->scraper->cache_get('http://www.bing.com/');
     $this->scraper->cache_get('http://www.bing.com/');
 }
 public function curl_setopt($ch)
 {
     curl_setopt($ch, CURLOPT_TIMEOUT, 3600);
     parent::curl_setopt($ch);
 }