Example #1
0
 /**
  * @testdox Allows setting the users postalcode
  * @covers Auth\Entity\Info::getPostalCode
  * @covers Auth\Entity\Info::setPostalCode
  */
 public function testSetGetPostalCode()
 {
     $postalCode = '60486 ';
     $this->target->setPostalCode($postalCode);
     $this->assertEquals($postalCode, $this->target->getPostalCode());
 }