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