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 tool_admin_presets\event; 18 19 /** 20 * Tests for the preset_previewed event class. 21 * 22 * @package tool_admin_presets 23 * @category test 24 * @copyright 2021 Sara Arjona (sara@moodle.com) 25 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later 26 * @covers \tool_admin_presets\event\preset_previewed 27 */ 28 class preset_previewed_test extends \advanced_testcase { 29 30 /** 31 * Test preset_previewed event. 32 */ 33 public function test_preset_previewed_event() { 34 $this->resetAfterTest(); 35 $this->setAdminUser(); 36 37 // Create a preset. 38 $generator = $this->getDataGenerator()->get_plugin_generator('core_adminpresets'); 39 $presetid = $generator->create_preset(); 40 41 $params = [ 42 'context' => \context_system::instance(), 43 'objectid' => $presetid, 44 ]; 45 $event = preset_previewed::create($params); 46 47 // Triggering and capturing the event. 48 $sink = $this->redirectEvents(); 49 $event->trigger(); 50 $events = $sink->get_events(); 51 $this->assertCount(1, $events); 52 $event = reset($events); 53 54 // Checking that the event contains the expected values. 55 $this->assertInstanceOf('\tool_admin_presets\event\preset_previewed', $event); 56 $this->assertEquals(\context_system::instance(), $event->get_context()); 57 $this->assertEquals($presetid, $event->objectid); 58 } 59 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body