コード例 #1
0
 /**
  * @return Step
  */
 protected function getRootStep()
 {
     $step = new Step();
     $step->setName(self::ROOT_STEP_NAME);
     $step->setTitle("If you're seeing this then there's an error in step processing. " . "Please send feedback to allure@yandex-team.ru. Thank you.");
     $step->setStart(self::getTimestamp());
     $step->setStatus(Status::BROKEN);
     return $step;
 }