From 97a4d3fc97ab9f8cc58ab693989fbec2b152998c Mon Sep 17 00:00:00 2001 From: Jean-Michel Vedrine Date: Mon, 1 Jan 2018 23:18:32 +0100 Subject: Improve test helper --- tests/helper.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'tests/helper.php') diff --git a/tests/helper.php b/tests/helper.php index e36ed9c..d569db2 100644 --- a/tests/helper.php +++ b/tests/helper.php @@ -55,6 +55,7 @@ class qtype_algebra_test_helper extends question_test_helper { $q->answerprefix = ''; $q->answers = array( 13 => new question_answer(13, '7*x', 1.0, 'This is a very good answer.', FORMAT_HTML), + 14 => new question_answer(14, '*', 0.0, 'This is completely wrong.', FORMAT_HTML), ); $q->variables = array( 7 => new qtype_algebra_variable(7, 'x', -5, 5) @@ -86,7 +87,8 @@ class qtype_algebra_test_helper extends question_test_helper { $qdata->options->allowedfuncs = ''; $qdata->options->answerprefix = ''; $qdata->options->answers = array( - 13 => new question_answer(13, '7', 1.0, 'This is a very good answer.', FORMAT_HTML), + 13 => new question_answer(13, '7*x', 1.0, 'This is a very good answer.', FORMAT_HTML), + 14 => new question_answer(14, '*', 0.0, 'This is completely wrong.', FORMAT_HTML), ); $qdata->options->variables = array( 7 => new qtype_algebra_variable(7, 'x', -5, 5) @@ -114,13 +116,14 @@ class qtype_algebra_test_helper extends question_test_helper { $form->allowedfuncs = ''; $form->disallow = ''; $form->answerprefix = ''; - $form->answer = array('7*x'); - $form->fraction = array('1.0'); + $form->answer = array('7*x', '*'); + $form->fraction = array('1.0', '0.0'); $form->variable = array('x'); $form->varmin = array('-5'); $form->varmax = array('5'); $form->feedback = array( array('text' => 'This is a very good answer.', 'format' => FORMAT_HTML), + array('text' => 'This is completely wrong.', 'format' => FORMAT_HTML), ); return $form; -- cgit v1.2.3