public function testGetHeaders()
 {
     $response = new Response('foo', 304, array('foo' => 'bar'));
     $this->assertEquals(array('foo' => 'bar'), $response->getHeaders(), '->getHeaders() returns the headers of the response');
 }