/**
  * {@inheritDoc}
  */
 public function getAbbreviation()
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'getAbbreviation', array());
     return parent::getAbbreviation();
 }
Ejemplo n.º 2
0
 public function testLanguageInitialState()
 {
     $user = new Language();
     $this->assertNull($user->getId(), '"id" should initially be null');
     $this->assertNull($user->getName(), '"name" should initially be null');
 }