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