コード例 #1
0
ファイル: HttpTest.php プロジェクト: heiglandreas/zf2
 public function testSetGetActionKey()
 {
     $this->_request->setActionKey('action');
     $this->assertEquals('action', $this->_request->getActionKey());
     $this->_request->setActionKey('foo');
     $this->assertEquals('foo', $this->_request->getActionKey());
 }