コード例 #1
0
 /**
  * After step hook
  *
  * @param Step $step step
  *
  * @return void
  */
 public function _afterStep(Step $step)
 {
     parent::_afterStep($step);
     $this->module->_afterStep($step);
 }
コード例 #2
0
ファイル: CtrlC.php プロジェクト: natterbox/codeception-ctrlc
 public function _afterStep(Step $step)
 {
     $this->debug(__CLASS__ . '::_afterStep ' . $step->getHumanizedActionWithoutArguments());
     // if there was an interruption; fail the step
     $this->failOnInterruption();
     parent::_afterStep($step);
 }