Inheritance: implements eZ\Publish\Core\REST\Client\HttpClient
 /**
  * Tests that ConnectionException is thrown
  *
  * @expectedException \eZ\Publish\Core\REST\Client\HttpClient\ConnectionException
  */
 public function testConnectionException()
 {
     $client = new Stream('http://localhost:54321');
     $client->request('GET', '/');
 }