Пример #1
0
 /**
  * @testdox Allows setting the day of birth of the user
  * @covers Auth\Entity\Info::getBirthDay
  * @covers Auth\Entity\Info::setBirthDay
  */
 public function testSetGetBirthDay()
 {
     $input = '10';
     $this->target->setBirthDay($input);
     $this->assertEquals($input, $this->target->getBirthDay());
 }