1 <?php 2 // This file is part of Moodle - http://moodle.org/ 3 // 4 // Moodle is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // Moodle is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU General Public License for more details. 13 // 14 // You should have received a copy of the GNU General Public License 15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>. 16 17 namespace qbehaviour_immediatecbm; 18 19 use question_engine; 20 21 defined('MOODLE_INTERNAL') || die(); 22 23 global $CFG; 24 require_once (__DIR__ . '/../../../engine/lib.php'); 25 require_once (__DIR__ . '/../../../engine/tests/helpers.php'); 26 27 28 /** 29 * Unit tests for the immediate feedback with CBM behaviour type class. 30 * 31 * @package qbehaviour_immediatecbm 32 * @category test 33 * @copyright 2015 The Open University 34 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later 35 */ 36 class behaviour_type_test extends \qbehaviour_walkthrough_test_base { 37 38 /** @var qbehaviour_immediatecbm_type */ 39 protected $behaviourtype; 40 41 public function setUp(): void { 42 parent::setUp(); 43 $this->behaviourtype = question_engine::get_behaviour_type('immediatecbm'); 44 } 45 46 public function test_is_archetypal() { 47 $this->assertTrue($this->behaviourtype->is_archetypal()); 48 } 49 50 public function test_get_unused_display_options() { 51 $this->assertEquals(array(), 52 $this->behaviourtype->get_unused_display_options()); 53 } 54 55 public function test_can_questions_finish_during_the_attempt() { 56 $this->assertTrue($this->behaviourtype->can_questions_finish_during_the_attempt()); 57 } 58 59 public function test_adjust_random_guess_score() { 60 $this->assertEquals(0, $this->behaviourtype->adjust_random_guess_score(0)); 61 $this->assertEquals(1, $this->behaviourtype->adjust_random_guess_score(1)); 62 } 63 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body