fetch() public method

public fetch ( $url )
 public function testValidUrl()
 {
     $fetcher = new CurlFetcher();
     $content = $fetcher->fetch('http://httpbin.org/html');
     $this->assertContains('Herman Melville', $content);
 }