예제 #1
0
 /**
  * @covers Core\Entity\Vocation::setName
  * @covers Core\Entity\Vocation::getName
  */
 public function testSetGetName()
 {
     $name = "Name";
     $this->vocation->setName($name);
     $this->assertEquals($this->vocation->getName(), $name);
 }
 /**
  * {@inheritDoc}
  */
 public function getName()
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', array());
     return parent::getName();
 }