/** * @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()); }