芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/.trash/cepali/question/type/numerical/tests/answer_test.php
. /** * Unit tests for the numerical question definition class. * * @package moodlecore * @subpackage questiontypes * @copyright 2008 The Open University * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ global $CFG; require_once($CFG->dirroot . '/question/engine/tests/helpers.php'); require_once($CFG->dirroot . '/question/type/numerical/question.php'); class qtype_numerical_answer_test extends advanced_testcase { public function test_within_tolerance_nominal() { $answer = new qtype_numerical_answer(13, 7.0, 1.0, '', FORMAT_MOODLE, 1.0); $this->assertFalse($answer->within_tolerance(5.99)); $this->assertTrue($answer->within_tolerance(6)); $this->assertTrue($answer->within_tolerance(7)); $this->assertTrue($answer->within_tolerance(8)); $this->assertFalse($answer->within_tolerance(8.01)); } public function test_within_tolerance_nominal_zero() { // Either an answer or tolerance of 0 requires special care. We still // don't want to end up comparing two floats for absolute equality. // Zero tol, non-zero answer. $answer = new qtype_numerical_answer(13, 1e-20, 1.0, '', FORMAT_MOODLE, 0.0); $this->assertFalse($answer->within_tolerance(0.9999999e-20)); $this->assertTrue($answer->within_tolerance(1e-20)); $this->assertFalse($answer->within_tolerance(1.0000001e-20)); // Non-zero tol, zero answer. $answer = new qtype_numerical_answer(13, 0.0, 1.0, '', FORMAT_MOODLE, 1e-24); $this->assertFalse($answer->within_tolerance(-2e-24)); $this->assertTrue($answer->within_tolerance(-1e-24)); $this->assertTrue($answer->within_tolerance(0)); $this->assertTrue($answer->within_tolerance(1e-24)); $this->assertFalse($answer->within_tolerance(2e-24)); // Zero tol, zero answer. $answer = new qtype_numerical_answer(13, 0.0, 1.0, '', FORMAT_MOODLE, 1e-24); $this->assertFalse($answer->within_tolerance(-1e-20)); $this->assertTrue($answer->within_tolerance(-1e-35)); $this->assertTrue($answer->within_tolerance(0)); $this->assertTrue($answer->within_tolerance(1e-35)); $this->assertFalse($answer->within_tolerance(1e-20)); // Non-zero tol, non-zero answer. $answer = new qtype_numerical_answer(13, 1e-20, 1.0, '', FORMAT_MOODLE, 1e-24); $this->assertFalse($answer->within_tolerance(1.0002e-20)); $this->assertTrue($answer->within_tolerance(1.0001e-20)); $this->assertTrue($answer->within_tolerance(1e-20)); $this->assertTrue($answer->within_tolerance(1.0001e-20)); $this->assertFalse($answer->within_tolerance(1.0002e-20)); } public function test_within_tolerance_blank() { $answer = new qtype_numerical_answer(13, 1234, 1.0, '', FORMAT_MOODLE, ''); $this->assertTrue($answer->within_tolerance(1234)); $this->assertFalse($answer->within_tolerance(1234.000001)); $this->assertFalse($answer->within_tolerance(0)); } public function test_within_tolerance_relative() { $answer = new qtype_numerical_answer(13, 7.0, 1.0, '', FORMAT_MOODLE, 0.1); $answer->tolerancetype = 1; $this->assertFalse($answer->within_tolerance(6.29)); $this->assertTrue($answer->within_tolerance(6.3)); $this->assertTrue($answer->within_tolerance(7)); $this->assertTrue($answer->within_tolerance(7.7)); $this->assertFalse($answer->within_tolerance(7.71)); } public function test_within_tolerance_geometric() { $answer = new qtype_numerical_answer(13, 7.0, 1.0, '', FORMAT_MOODLE, 1.0); $answer->tolerancetype = 3; $this->assertFalse($answer->within_tolerance(3.49)); $this->assertTrue($answer->within_tolerance(3.5)); $this->assertTrue($answer->within_tolerance(7)); $this->assertTrue($answer->within_tolerance(14)); $this->assertFalse($answer->within_tolerance(14.01)); } }