コード例 #1
0
ファイル: HttpTest.php プロジェクト: lortnus/zf1
 public function testSetHttpResponseCode()
 {
     $this->assertEquals(200, $this->_response->getHttpResponseCode());
     $this->_response->setHttpResponseCode(302);
     $this->assertEquals(302, $this->_response->getHttpResponseCode());
 }