Esempio n. 1
0
 /**
  * @testdox Allows setting the Month of birth of the user
  * @covers Auth\Entity\Info::getBirthMonth
  * @covers Auth\Entity\Info::setBirthMonth
  */
 public function testSetGetBirthMonth()
 {
     $input = '10';
     $this->target->setBirthMonth($input);
     $this->assertEquals($input, $this->target->getBirthMonth());
 }