Example #1
0
 /**
  * @testdox Allows setting the users city
  * @covers Auth\Entity\Info::getLastName
  * @covers Auth\Entity\Info::setLastName
  */
 public function testSetGetLastName()
 {
     $input = ' Bleek ';
     $output = 'Bleek';
     $this->target->setLastName($input);
     $this->assertEquals($output, $this->target->getLastName());
 }