Beispiel #1
0
 public function testHeaders()
 {
     $headers = $this->response->getHeaders();
     $this->assertEquals('/url', $headers['Location']);
     $this->assertEquals(Http::STATUS_TEMPORARY_REDIRECT, $this->response->getStatus());
 }
 public function testHeaders()
 {
     $headers = $this->response->getHeaders();
     $this->assertEquals('/url', $headers['Location']);
     $this->assertEquals(Http::STATUS_SEE_OTHER, $this->response->getStatus());
 }