public function testCreate() {
$response = Response::create('foo', 301, array(
'Foo' => 'bar',
));
$this
->assertInstanceOf('Symfony\\Component\\HttpFoundation\\Response', $response);
$this
->assertEquals(301, $response
->getStatusCode());
$this
->assertEquals('bar', $response->headers
->get('foo'));
}