芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/public_html/cepali/question/format/aiken/tests/aikenformat_test.php
. /** * Unit tests for the Moodle Aiken format. * * @package qformat_aiken * @copyright 2018 Eric Merrill (eric.a.merrill@gmail.com) * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); global $CFG; require_once($CFG->libdir . '/questionlib.php'); require_once($CFG->dirroot . '/question/format.php'); require_once($CFG->dirroot . '/question/format/aiken/format.php'); require_once($CFG->dirroot . '/question/engine/tests/helpers.php'); /** * Unit tests for the matching question definition class. * * @copyright 2018 Eric Merrill (eric.a.merrill@gmail.com) * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class aikenformat_test extends question_testcase { public function test_readquestions() { global $CFG; $lines = file($CFG->dirroot.'/question/format/aiken/tests/fixtures/aiken_errors.txt'); $importer = new qformat_aiken($lines); // The importer echos some errors, so we need to capture and check that. ob_start(); $questions = $importer->readquestions($lines); $output = ob_get_contents(); ob_end_clean(); // Check that there were some expected errors. $this->assertContains('Error importing question A question with too few answers', $output); $this->assertContains('Question must have at least 2 answers on line 3', $output); $this->assertContains('Question not started on line 5', $output); $this->assertContains('Question not started on line 7', $output); $this->assertContains('Error importing question A question started but not finished', $output); $this->assertContains('Question not completed before next question start on line 18', $output); // There are two expected questions. $this->assertCount(2, $questions); $q1 = null; $q2 = null; foreach ($questions as $question) { if ($question->name === 'A good question') { $q1 = $question; } else if ($question->name === 'A second good question') { $q2 = $question; } } // Check the first good question. $this->assertCount(2, $q1->answer); $this->assertEquals(1, $q1->fraction[0]); $this->assertEquals('Correct', $q1->answer[0]['text']); $this->assertEquals('Incorrect', $q1->answer[1]['text']); // Check the second good question. $this->assertCount(2, $q2->answer); $this->assertEquals(1, $q2->fraction[1]); $this->assertEquals('Incorrect (No space)', $q2->answer[0]['text']); $this->assertEquals('Correct (No space)', $q2->answer[1]['text']); } }