/** * @testdox Allows setting the users city * @covers Auth\Entity\Info::getCity * @covers Auth\Entity\Info::setCity */ public function testSetGetCity() { $city = ' Frankfurt am Main'; $this->target->setCity($city); $this->assertEquals($city, $this->target->getCity()); }