コード例 #1
0
ファイル: RedirectResponseTest.php プロジェクト: Romua1d/core
 public function testHeaders()
 {
     $headers = $this->response->getHeaders();
     $this->assertEquals('/url', $headers['Location']);
     $this->assertEquals(Http::STATUS_TEMPORARY_REDIRECT, $this->response->getStatus());
 }
コード例 #2
0
 public function testHeaders()
 {
     $headers = $this->response->getHeaders();
     $this->assertEquals('/url', $headers['Location']);
     $this->assertEquals(Http::STATUS_SEE_OTHER, $this->response->getStatus());
 }