/**
  * {@inheritDoc}
  */
 public function getPassword()
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPassword', array());
     return parent::getPassword();
 }
Esempio n. 2
0
 /**
  * @covers Core\Entity\LisUser::setPassword
  * @covers Core\Entity\LisUser::getPassword
  */
 public function testSetGetPassword()
 {
     $password = "******";
     $this->lisuser->setPassword($password);
     $this->assertEquals($this->lisuser->getPassword(), $password);
 }