*/ namespace oat\taoQtiTest\models\runner\navigation; use oat\taoQtiTest\models\runner\RunnerServiceContext; class QtiRunnerNavigationNextSection implements RunnerNavigation { /** * Do the move * @param RunnerServiceContext $context * @param mixed $ref * @return boolean * @throws \common_Exception */ public function move(RunnerServiceContext $context, $ref) { $context->getTestSession()->moveNextAssessmentSection(); return true; } }