Proyectos de Subversion Moodle

Rev

Rev 11 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 11 Rev 1441
Línea 28... Línea 28...
28
 * @package    auth_lti
28
 * @package    auth_lti
29
 * @copyright  2021 Jake Dallimore <jrhdallimore@gmail.com>
29
 * @copyright  2021 Jake Dallimore <jrhdallimore@gmail.com>
30
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
30
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
31
 * @coversDefaultClass \auth_lti\privacy\provider
31
 * @coversDefaultClass \auth_lti\privacy\provider
32
 */
32
 */
33
class provider_test extends provider_testcase {
33
final class provider_test extends provider_testcase {
34
    /**
34
    /**
35
     * Set up method.
35
     * Set up method.
36
     */
36
     */
37
    public function setUp(): void {
37
    public function setUp(): void {
-
 
38
        parent::setUp();
38
        $this->resetAfterTest();
39
        $this->resetAfterTest();
39
        $this->setAdminUser();
40
        $this->setAdminUser();
40
    }
41
    }
Línea 41... Línea 42...
41
 
42