Esempio n. 1
0
 /**
  * Runs the runner. Before running you should check if run is allowed (isRunAllowed())
  *
  * @see Base\Cli.Runner::run()
  */
 public function run()
 {
     if ($this->isRunAllowed()) {
         $this->initTestRun();
         $this->testRun->run();
     } else {
         throw new Exception('Not allowed to run');
     }
 }