Author: Mattis Stordalen Flister (mattis@xait.no)
Author: Sebastian Bergmann (sebastian@phpunit.de)
Example #1
0
 /**
  * Run this test's scenario.
  *
  * @throws RuntimeException
  */
 protected function runTest()
 {
     parent::runTest();
     $this->scenario->run($this->world);
 }
Example #2
0
 /**
  * Run this test's scenario.
  *
  * @return mixed
  * @throws RuntimeException
  */
 protected function runTest()
 {
     $testResult = parent::runTest();
     $this->scenario->run($this->world);
     return $testResult;
 }