protected function _before()
 {
     $this->response = new Response();
     $this->response->setBody('All hands on deck!');
     $this->response->setHeaders(new Headers());
 }
 public function testSend()
 {
     $this->assertNull($this->response->send());
 }