]> git.mjollnir.org Git - moodle.git/commitdiff
Start of unit tests for numerical question type.
authortjhunt <tjhunt>
Tue, 25 Jul 2006 07:08:21 +0000 (07:08 +0000)
committertjhunt <tjhunt>
Tue, 25 Jul 2006 07:08:21 +0000 (07:08 +0000)
question/type/numerical/simpletest/testquestiontype.php [new file with mode: 0644]
question/type/shortanswer/questiontype.php

diff --git a/question/type/numerical/simpletest/testquestiontype.php b/question/type/numerical/simpletest/testquestiontype.php
new file mode 100644 (file)
index 0000000..824ae5f
--- /dev/null
@@ -0,0 +1,82 @@
+<?php
+/**
+ * Unit tests for (some of) question/type/numerical/questiontype.php.
+ *
+ * @copyright &copy; 2006 The Open University
+ * @author T.J.Hunt@open.ac.uk
+ * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
+ * @package question
+ */
+
+/** */
+require_once(dirname(__FILE__) . '/../../../../config.php');
+
+global $CFG;
+require_once($CFG->libdir . '/simpletestlib.php');
+require_once($CFG->dirroot . '/question/type/numerical/questiontype.php');
+
+class question_numerical_qtype_test extends UnitTestCase {
+    var $qtype;
+    
+    function setUp() {
+        $this->qtype = new question_numerical_qtype();
+    }
+    
+    function tearDown() {
+        $this->qtype = null;   
+    }
+
+    function test_name() {
+        $this->assertEqual($this->qtype->name(), 'numerical');
+    }
+
+//    function test_get_question_options() {
+//    }
+//
+//    function test_get_numerical_units() {
+//    }
+//
+//    function test_get_default_numerical_unit() {
+//    }
+//
+//    function test_save_question_options() {
+//    }
+//
+//    function test_save_numerical_units() {
+//    }
+//
+//    function test_delete_question() {
+//    }
+//
+//    function test_compare_responses() {
+//    }
+//
+//    function test_test_response() {
+//    }
+//
+//    function test_check_response(){
+//    }
+//
+//    function test_grade_responses() {
+//    }
+//
+//    function test_get_correct_responses() {
+//    }
+//
+//    function test_get_all_responses() {
+//    }
+
+    function test_get_tolerance_interval() {
+    }
+
+    function test_apply_unit() {
+    }
+
+//    function test_backup() {
+//    }
+//
+//    function test_restore() {
+//    }
+}
+
+?>
index 703b7b1113706febbac053bd3fa79fbb36f5e982..92f810492e0b3fd349e31fa982c4533b2f2ccacc 100644 (file)
@@ -10,6 +10,7 @@
 /// This class contains some special features in order to make the
 /// question type embeddable within a multianswer (cloze) question
 ///
+require_once("$CFG->dirroot/question/type/questiontype.php");
 
 class question_shortanswer_qtype extends default_questiontype {