コード例 #1
0
ファイル: CityTest.php プロジェクト: EHER/chegamos
 public function testSetGetCountry()
 {
     $this->object->setCountry('country');
     $this->assertEquals('country', $this->object->getCountry());
     $this->object->setCountry('Country');
     $this->assertEquals('Country', $this->object->getCountry());
 }