*/ namespace oat\taoQtiTest\models\runner\config; use oat\taoQtiTest\models\runner\RunnerServiceContext; /** * Interface RunnerOptions * @package oat\taoQtiTest\models\runner\options */ interface RunnerConfig { /** * Returns the config related to the runner * @return mixed */ public function getConfig(); /** * Returns the value of a config entry * @param string $name * @return mixed */ public function getConfigValue($name); /** * Returns the options related to the current test context * @param RunnerServiceContext $context The test context * @return mixed */ public function getTestOptions(RunnerServiceContext $context); }