/** * @testdox Allows to set the secret of a user * @covers Auth\Entity\User::getSecret * @covers Auth\Entity\User::setSecret */ public function testSetGetSecret() { $input = 'secret'; $this->target->setSecret($input); $this->assertEquals($input, $this->target->getSecret()); }