Proyectos de Subversion Moodle

Rev

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

Rev 11 Rev 1441
Línea 36... Línea 36...
36
 * Unit tests for the auth_manual implementation of the privacy API.
36
 * Unit tests for the auth_manual implementation of the privacy API.
37
 *
37
 *
38
 * @copyright  2018 Carlos Escobedo <carlos@moodle.com>
38
 * @copyright  2018 Carlos Escobedo <carlos@moodle.com>
39
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
39
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
40
 */
40
 */
41
class provider_test extends \core_privacy\tests\provider_testcase {
41
final class provider_test extends \core_privacy\tests\provider_testcase {
Línea 42... Línea 42...
42
 
42
 
43
    /** @var \auth_plugin_manual Keeps the authentication plugin. */
43
    /** @var \auth_plugin_manual Keeps the authentication plugin. */
Línea 44... Línea 44...
44
    protected $authplugin;
44
    protected $authplugin;
45
 
45
 
46
    /**
46
    /**
47
     * Basic setup for these tests.
47
     * Basic setup for these tests.
-
 
48
     */
48
     */
49
    public function setUp(): void {
49
    public function setUp(): void {
50
        parent::setUp();
50
        $this->resetAfterTest(true);
51
        $this->resetAfterTest(true);
Línea 51... Línea 52...
51
        $this->authplugin = new \auth_plugin_manual();
52
        $this->authplugin = new \auth_plugin_manual();