run() публичный Метод

Runs this scenario.
public run ( array &$world )
$world array
Пример #1
0
 /**
  * Run this test's scenario.
  *
  * @throws RuntimeException
  */
 protected function runTest()
 {
     parent::runTest();
     $this->scenario->run($this->world);
 }
Пример #2
0
 /**
  * Run this test's scenario.
  *
  * @return mixed
  * @throws RuntimeException
  */
 protected function runTest()
 {
     $testResult = parent::runTest();
     $this->scenario->run($this->world);
     return $testResult;
 }