コード例 #1
0
ファイル: HTML.php プロジェクト: hitechdk/Codeception
 /**
  * @param $step
  * @return string
  */
 protected function renderStep(Step $step)
 {
     $stepTemplate = new \Text_Template($this->templatePath . 'step.html');
     $stepTemplate->setVar(['action' => $step->getHtml(), 'error' => $step->hasFailed() ? 'failedStep' : '']);
     return $stepTemplate->render();
 }