Beispiel #1
0
 /**
  * @param string $entityType
  * @param object $entity
  * @return object
  * @throws \Exception
  */
 public function execute($entityType, $entity)
 {
     $entity = $this->updateMain->execute($entityType, $entity);
     $entity = $this->updateExtension->execute($entityType, $entity);
     $entity = $this->updateRelation->execute($entityType, $entity);
     return $entity;
 }
 public function testExecute()
 {
     $entityType = 'Type';
     $entity = new \stdClass();
     $action = $this->getMockBuilder(\stdClass::class)->disableOriginalConstructor()->setMethods(['execute'])->getMock();
     $this->relationActionPoolMock->expects($this->once())->method('getActions')->with($entityType, 'update')->willReturn([$action]);
     $action->expects($this->once())->method('execute')->with($entityType, $entity)->willReturn($entity);
     $this->assertEquals($entity, $this->updateRelation->execute($entityType, $entity));
 }