/** * @testdox Allows setting the year of birth of the user * @covers Auth\Entity\Info::getBirthYear * @covers Auth\Entity\Info::setBirthYear */ public function testSetGetBirthYear() { $input = '1970'; $this->target->setBirthYear($input); $this->assertEquals($input, $this->target->getBirthYear()); }