Extends
lithium\test\UnitSource
public function testAllMethodsNoConnection() {
$stream = new Curl(array('scheme' => null));
$this->assertFalse($stream->open());
$this->assertTrue($stream->close());
$this->assertFalse($stream->timeout(2));
$this->assertFalse($stream->encoding('UTF-8'));
$this->assertFalse($stream->write(null));
$this->assertFalse($stream->read());
}