芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/.trash/cepali/message/output/email/tests/privacy_test.php
. /** * Base class for unit tests for message_email. * * @package message_email * @copyright 2018 Mihail Geshoski
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); use \core_privacy\tests\provider_testcase; /** * Unit tests for message\output\email\classes\privacy\provider.php * * @copyright 2018 Mihail Geshoski
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class message_email_testcase extends provider_testcase { /** * Basic setup for these tests. */ public function setUp() { $this->resetAfterTest(true); } /** * Test returning metadata. */ public function test_get_metadata() { $collection = new \core_privacy\local\metadata\collection('message_email'); $collection = \message_email\privacy\provider::get_metadata($collection); $this->assertNotEmpty($collection); } /** * Test getting the context for the user ID related to this plugin. */ public function test_get_contexts_for_userid() { $user = $this->getDataGenerator()->create_user(); $contextlist = \message_email\privacy\provider::get_contexts_for_userid($user->id); $this->assertEmpty($contextlist); } }