/**
  * Set the position in the Route at the very next assessmentSection in the route sequence.
  *
  * * If there is no assessmentSection left in the flow, the test session ends gracefully.
  * * If there are still pending responses, they are processed.
  *
  * @throws AssessmentTestSessionException If the test is not running.
  */
 public function moveNextAssessmentSection()
 {
     $sessionMemento = $this->getSessionMemento();
     parent::moveNextAssessmentSection();
     $this->triggerEventChange($sessionMemento);
 }