Пример #1
0
 /**
  * @param StepExecution $stepExecution
  */
 public function setStepExecution(StepExecution $stepExecution)
 {
     $this->importProcessor->setStepExecution($stepExecution);
     $this->exportProcessor->setStepExecution($stepExecution);
 }
 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);
 }