Extends
lithium\test\UnitSource
public function testSendWithArray() {
$stream = new Stream($this->_testConfig);
$this->assertTrue(is_resource($stream->open()));
$result = $stream->send($this->_testConfig,
array('response' => 'lithium\net\http\Response')
);
$this->assertTrue($result instanceof Response);
$this->assertPattern("/^HTTP/", (string) $result);
$this->assertTrue($stream->eof());
}