public function testSetContentType()
 {
     $response = new Response(new App());
     $response->setContentType('text/json');
     $this->assertEquals('text/json; charset=UTF-8', $response->getHeaderLine('Content-Type'));
 }