芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/public_html/cepali/question/type/calculatedmulti/tests/question_test.php
. /** * Unit tests for the calculated multiple-choice question definition class. * * @package qtype * @subpackage calculatedmulti * @copyright 2011 The Open University * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); global $CFG; require_once($CFG->dirroot . '/question/engine/tests/helpers.php'); /** * Unit tests for qtype_calculatedmulti_definition. * * @copyright 2011 The Open University * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class qtype_calculatedmulti_question_test extends advanced_testcase { public function test_is_complete_response() { $question = test_question_maker::make_question('calculated'); $this->assertFalse($question->is_complete_response(array())); $this->assertTrue($question->is_complete_response(array('answer' => '0'))); $this->assertTrue($question->is_complete_response(array('answer' => 0))); $this->assertFalse($question->is_complete_response(array('answer' => 'test'))); } public function test_is_gradable_response() { $question = test_question_maker::make_question('calculated'); $this->assertFalse($question->is_gradable_response(array())); $this->assertTrue($question->is_gradable_response(array('answer' => '0'))); $this->assertTrue($question->is_gradable_response(array('answer' => 0))); $this->assertTrue($question->is_gradable_response(array('answer' => 'test'))); } public function test_grading() { $question = test_question_maker::make_question('calculated'); $question->start_attempt(new question_attempt_step(), 1); $values = $question->vs->get_values(); $this->assertEquals(array(0, question_state::$gradedwrong), $question->grade_response(array('answer' => $values['a'] - $values['b']))); $this->assertEquals(array(1, question_state::$gradedright), $question->grade_response(array('answer' => $values['a'] + $values['b']))); } public function test_get_correct_response() { $question = test_question_maker::make_question('calculated'); $question->start_attempt(new question_attempt_step(), 1); $values = $question->vs->get_values(); $this->assertEquals(array('answer' => $values['a'] + $values['b']), $question->get_correct_response()); } public function test_get_question_summary() { $question = test_question_maker::make_question('calculated'); $question->start_attempt(new question_attempt_step(), 1); $values = $question->vs->get_values(); $qsummary = $question->get_question_summary(); $this->assertEquals('What is ' . $values['a'] . ' + ' . $values['b'] . '?', $qsummary); } public function test_summarise_response() { $question = test_question_maker::make_question('calculated'); $question->start_attempt(new question_attempt_step(), 1); $values = $question->vs->get_values(); $this->assertEquals('3.1', $question->summarise_response(array('answer' => '3.1'))); } public function test_classify_response() { $question = test_question_maker::make_question('calculated'); $question->start_attempt(new question_attempt_step(), 1); $values = $question->vs->get_values(); $this->assertEquals(array( new question_classified_response(13, $values['a'] + $values['b'], 1.0)), $question->classify_response(array('answer' => $values['a'] + $values['b']))); $this->assertEquals(array( new question_classified_response(14, $values['a'] - $values['b'], 0.0)), $question->classify_response(array('answer' => $values['a'] - $values['b']))); $this->assertEquals(array( new question_classified_response(17, 7 * $values['a'], 0.0)), $question->classify_response(array('answer' => 7 * $values['a']))); $this->assertEquals(array( question_classified_response::no_response()), $question->classify_response(array('answer' => ''))); } }