/**
  * @covers Core\Entity\ModuleType::setCreatedBy
  * @covers Core\Entity\ModuleType::getCreatedBy
  */
 public function testSetGetCreatedBy()
 {
     $mockLisUser = $this->getMockBuilder('Core\\Entity\\LisUser')->getMock();
     $this->moduleType->setCreatedBy($mockLisUser);
     $this->assertEquals($mockLisUser, $this->moduleType->getCreatedBy());
 }
 /**
  * {@inheritDoc}
  */
 public function getCreatedBy()
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreatedBy', array());
     return parent::getCreatedBy();
 }