Exemple #1
0
 /**
  * tests setTokenLength() and getTokenLength()
  */
 public function testGetAndSetTokenLength()
 {
     $this->assertEquals(32, $this->_formHelperToken->getTokenLength());
     $this->_formHelperToken->setTokenLength(16);
     $this->assertEquals(16, $this->_formHelperToken->getTokenLength());
 }