Extends
lithium\test\UnitSource
public function testEmptyResponse() {
$response = new Response(array('message' => "\n"));
$result = trim((string) $response);
$expected = 'HTTP/1.1 200 OK';
$this->assertEqual($expected, $result);
}
public function testEmptyResponse() {
$response = new Response(array('message' => "\n"));
$result = trim((string) $response);
$expected = 'HTTP/1.1 200 OK';
$this->assertEqual($expected, $result);
}