/** * Run this test's scenario. * * @throws RuntimeException */ protected function runTest() { parent::runTest(); $this->scenario->run($this->world); }
/** * Run this test's scenario. * * @return mixed * @throws RuntimeException */ protected function runTest() { $testResult = parent::runTest(); $this->scenario->run($this->world); return $testResult; }