コード例 #1
0
ファイル: UserTest.php プロジェクト: cross-solution/yawik
 /**
  * @testdox Allows to set the login name of the user
  * @covers Auth\Entity\User::getLogin
  * @covers Auth\Entity\User::setLogin
  */
 public function testSetGetLogin()
 {
     $input = 'demo';
     $this->target->setLogin($input);
     $this->assertEquals($input, $this->target->getLogin());
 }