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