Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Start of unit tests for numerical question type.
  • Loading branch information
tjhunt committed Jul 25, 2006
1 parent 8895a9c commit 22f2f41
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 0 deletions.
82 changes: 82 additions & 0 deletions question/type/numerical/simpletest/testquestiontype.php
@@ -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() {
// }
}

?>
1 change: 1 addition & 0 deletions question/type/shortanswer/questiontype.php
Expand Up @@ -10,6 +10,7 @@
/// This class contains some special features in order to make the /// This class contains some special features in order to make the
/// question type embeddable within a multianswer (cloze) question /// question type embeddable within a multianswer (cloze) question
/// ///
require_once("$CFG->dirroot/question/type/questiontype.php");


class question_shortanswer_qtype extends default_questiontype { class question_shortanswer_qtype extends default_questiontype {


Expand Down

0 comments on commit 22f2f41

Please sign in to comment.