예제 #1
0
파일: CityTest.php 프로젝트: EHER/chegamos
 public function testPopulateWithArrayData()
 {
     $data = array('City' => 'City', 'State' => 'State', 'Country' => 'Country');
     $this->object->populate($data);
     $this->assertEquals('', $this->object->getName());
     $this->assertEquals('', $this->object->getState());
     $this->assertEquals('', $this->object->getCountry());
 }