芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/.trash/cepali/question/type/essay/tests/questiontype_test.php
. /** * Unit tests for the essay question type class. * * @package qtype * @subpackage essay * @copyright 2010 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/type/essay/questiontype.php'); /** * Unit tests for the essay question type class. * * @copyright 2010 The Open University * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class qtype_essay_test extends advanced_testcase { protected $qtype; protected function setUp() { $this->qtype = new qtype_essay(); } protected function tearDown() { $this->qtype = null; } protected function get_test_question_data() { $q = new stdClass(); $q->id = 1; return $q; } public function test_name() { $this->assertEquals($this->qtype->name(), 'essay'); } public function test_can_analyse_responses() { $this->assertFalse($this->qtype->can_analyse_responses()); } public function test_get_random_guess_score() { $q = $this->get_test_question_data(); $this->assertEquals(0, $this->qtype->get_random_guess_score($q)); } public function test_get_possible_responses() { $q = $this->get_test_question_data(); $this->assertEquals(array(), $this->qtype->get_possible_responses($q)); } }