1 |
efrain |
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_manualgraded;
|
|
|
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 manually graded behaviour type class.
|
|
|
30 |
*
|
|
|
31 |
* @package qbehaviour_manualgraded
|
|
|
32 |
* @category test
|
|
|
33 |
* @copyright 2015 The Open University
|
|
|
34 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
35 |
*/
|
1441 |
ariadna |
36 |
final class behaviour_type_test extends \basic_testcase {
|
1 |
efrain |
37 |
|
|
|
38 |
/** @var qbehaviour_manualgraded_type */
|
|
|
39 |
protected $behaviourtype;
|
|
|
40 |
|
|
|
41 |
public function setUp(): void {
|
|
|
42 |
parent::setUp();
|
|
|
43 |
$this->behaviourtype = question_engine::get_behaviour_type('manualgraded');
|
|
|
44 |
}
|
|
|
45 |
|
11 |
efrain |
46 |
public function test_is_archetypal(): void {
|
1 |
efrain |
47 |
$this->assertTrue($this->behaviourtype->is_archetypal());
|
|
|
48 |
}
|
|
|
49 |
|
11 |
efrain |
50 |
public function test_get_unused_display_options(): void {
|
1 |
efrain |
51 |
$this->assertEquals(array('correctness', 'marks', 'specificfeedback', 'generalfeedback', 'rightanswer'),
|
|
|
52 |
$this->behaviourtype->get_unused_display_options());
|
|
|
53 |
}
|
|
|
54 |
|
11 |
efrain |
55 |
public function test_can_questions_finish_during_the_attempt(): void {
|
1 |
efrain |
56 |
$this->assertFalse($this->behaviourtype->can_questions_finish_during_the_attempt());
|
|
|
57 |
}
|
|
|
58 |
|
11 |
efrain |
59 |
public function test_adjust_random_guess_score(): void {
|
1 |
efrain |
60 |
$this->assertEquals(0, $this->behaviourtype->adjust_random_guess_score(0));
|
|
|
61 |
$this->assertEquals(1, $this->behaviourtype->adjust_random_guess_score(1));
|
|
|
62 |
}
|
|
|
63 |
}
|