. /** * Event mock. * * @package core * @category phpunit * @copyright 2013 Frédéric Massart * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ require_once(__DIR__ . '/../../classes/event/base.php'); /** * Event mock class. * * @package core * @category phpunit * @copyright 2013 Frédéric Massart * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ abstract class phpunit_event_mock extends \core\event\base { /** * Returns the log data of the event. * @return array */ public static function testable_get_legacy_eventdata($event) { return $event->get_legacy_eventdata(); } /** * Returns the log data of the event. * @return array */ public static function testable_get_legacy_logdata($event) { return $event->get_legacy_logdata(); } }