protected function getPropertyLabel($id)
 {
     $msgkey = $this->lookupWithIndexForId('msgkey', $id);
     if ($msgkey) {
         return $this->messageCache->get($msgkey);
     }
     return false;
 }
 public function testAccessibility()
 {
     $instance = new MessageCache(Language::factory('en'), 10001);
     $instance->setCache(new HashBagOStuff());
     $this->assertInternalType('string', $instance->get('foo'));
 }