コード例 #1
0
 public function _afterSuite()
 {
     $this->debug(__CLASS__ . '::' . __FUNCTION__ . '()');
     foreach ($this->suite_cleanup_actions as $cleanup_action) {
         $this->debugSection('cleanup(after-suite)', $cleanup_action->getDefinition());
         call_user_func($cleanup_action, $this);
     }
     $this->suite_cleanup_actions = [];
     parent::_afterSuite();
 }
コード例 #2
0
 /**
  * After suite hook
  *
  * @return void
  */
 public function _afterSuite()
 {
     parent::_afterSuite();
     $this->module->_afterSuite();
 }
コード例 #3
0
ファイル: CtrlC.php プロジェクト: natterbox/codeception-ctrlc
 public function _afterSuite()
 {
     // if there was an interruption; let us abort the whole run!
     $this->failOnInterruption();
     parent::_afterSuite();
 }