コード例 #1
0
ファイル: TokenTest.php プロジェクト: bergelmir/Idun
 /**
  * tests setTokenLength() and getTokenLength()
  */
 public function testGetAndSetTokenLength()
 {
     $this->assertEquals(32, $this->_formHelperToken->getTokenLength());
     $this->_formHelperToken->setTokenLength(16);
     $this->assertEquals(16, $this->_formHelperToken->getTokenLength());
 }