예제 #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());
 }