コード例 #1
0
ファイル: InfoTest.php プロジェクト: webpants/YAWIK
 /**
  * @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());
 }