芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/www/cepali/portfolio/boxnet/tests/privacy_provider_test.php
. /** * Privacy provider tests. * * @package portfolio_boxnet * @copyright 2018 Jake Dallimore
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); /** * Privacy provider tests class. * * @copyright 2018 Jake Dallimore
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class portfolio_boxnet_privacy_provider_test extends \core_privacy\tests\provider_testcase { /** * Verify that a collection of metadata is returned for this component and that it just links to an external location. */ public function test_get_metadata() { $collection = new \core_privacy\local\metadata\collection('portfolio_boxnet'); $collection = \portfolio_boxnet\privacy\provider::get_metadata($collection); $this->assertNotEmpty($collection); $items = $collection->get_collection(); $this->assertEquals(1, count($items)); $this->assertInstanceOf(\core_privacy\local\metadata\types\external_location::class, $items[0]); } }