/**
  * @runInSeparateProcess
  */
 public function testRedirect()
 {
     $response = new Response($this->makeRequest());
     $response->exitAfterRedirect(false);
     $response->redirect('test.php', false);
     $this->assertContains('Location: test.php', xdebug_get_headers());
 }