Beispiel #1
0
 /**
  * Captures step stats on step AFTER event.
  *
  * @param Event $event
  */
 private function captureStepStatsOnAfterEvent(Event $event)
 {
     if (!$event instanceof AfterStepTested) {
         return;
     }
     $result = $event->getTestResult();
     $step = $event->getStep();
     $text = sprintf('%s %s', $step->getKeyword(), $step->getText());
     $exception = $this->getStepException($result);
     $path = $this->getStepPath($event, $exception);
     $error = $exception ? $this->exceptionPresenter->presentException($exception) : null;
     $stdOut = $result instanceof ExecutedStepResult ? $result->getCallResult()->getStdOut() : null;
     $resultCode = $result->getResultCode();
     $stat = new StepStatV2($this->scenarioTitle, $this->scenarioPath, $text, $path, $resultCode, $error, $stdOut);
     $this->statistics->registerStepStat($stat);
 }