コード例 #1
0
ファイル: TwoWaySyncStrategy.php プロジェクト: antrampa/crm
 /**
  * @param StepExecution $stepExecution
  */
 public function setStepExecution(StepExecution $stepExecution)
 {
     $this->importProcessor->setStepExecution($stepExecution);
     $this->exportProcessor->setStepExecution($stepExecution);
 }
コード例 #2
0
 public function testSetStepExecution()
 {
     $this->processor->setContextRegistry($this->contextRegistry);
     $this->contextRegistry->expects($this->once())->method('getByStepExecution')->will($this->returnValue($this->context));
     $this->processor->setStepExecution($this->stepExecution);
 }