Пример #1
0
 /**
  * @testdox Allows setting a phone number of the user
  * @covers Auth\Entity\Info::getPhone
  * @covers Auth\Entity\Info::setPhone
  */
 public function testSetGetPhone()
 {
     $phone = '+49 1795077451';
     $this->target->setPhone($phone);
     $this->assertEquals($phone, $this->target->getPhone());
 }