Example #1
0
 /**
  * @testdox Allows setting the street of the user
  * @covers Auth\Entity\Info::getStreet
  * @covers Auth\Entity\Info::setStreet
  */
 public function testSetGetStreet()
 {
     $input = 'Test Road 13';
     $this->target->setStreet($input);
     $this->assertEquals($input, $this->target->getStreet());
 }