public function testPopulate()
 {
     $localeEntity = new LocaleEntity();
     $localeEntity->populate($this->locale);
     $this->assertEquals($this->locale["name"], $localeEntity->getName());
     $this->assertEquals($this->locale["locale"], $localeEntity->getLocale());
     $this->assertEquals($this->locale["active_back"], $localeEntity->getActiveBack());
     $this->assertEquals($this->locale["active_front"], $localeEntity->getActiveFront());
 }