Proyectos de Subversion Moodle

Rev

Rev 11 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
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 enrol_lti\local\ltiadvantage\viewobject;
18
 
19
/**
20
 * Tests for published_resource view objects.
21
 *
22
 * @package enrol_lti
23
 * @copyright 2021 Jake Dallimore <jrhdallimore@gmail.com>
24
 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25
 * @coversDefaultClass \enrol_lti\local\ltiadvantage\viewobject\published_resource
26
 */
1441 ariadna 27
final class published_resource_test extends \advanced_testcase {
1 efrain 28
 
29
    /**
30
     * Test creating a simple published_resource view object and fetching information about it.
31
     *
32
     * @covers ::__construct
33
     */
11 efrain 34
    public function test_create(): void {
1 efrain 35
        $pr = new published_resource(
36
            'Assignment one',
37
            'Course 1',
38
            23,
39
            45,
40
            2,
41
            'uuid-123-abc',
42
            true,
43
            110.50,
44
            false
45
        );
46
        $this->assertEquals('Assignment one', $pr->get_name());
47
        $this->assertEquals('Course 1', $pr->get_coursefullname());
48
        $this->assertEquals(23, $pr->get_courseid());
49
        $this->assertEquals(45, $pr->get_contextid());
50
        $this->assertEquals(2, $pr->get_id());
51
        $this->assertEquals('uuid-123-abc', $pr->get_uuid());
52
        $this->assertEquals(true, $pr->supports_grades());
53
        $this->assertEquals(110.50, $pr->get_grademax());
54
        $this->assertEquals(false, $pr->is_course());
55
    }
56
}