Proyectos de Subversion Moodle

Rev

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

Rev 11 Rev 1441
Línea 35... Línea 35...
35
 * Unit tests for the core_repository implementation of the privacy API.
35
 * Unit tests for the core_repository implementation of the privacy API.
36
 *
36
 *
37
 * @copyright  2018 Zig Tan <zig@moodle.com>
37
 * @copyright  2018 Zig Tan <zig@moodle.com>
38
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
38
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
39
 */
39
 */
40
class provider_test extends \core_privacy\tests\provider_testcase {
40
final class provider_test extends \core_privacy\tests\provider_testcase {
Línea 41... Línea 41...
41
 
41
 
42
    /**
42
    /**
43
     * Overriding setUp() function to always reset after tests.
43
     * Overriding setUp() function to always reset after tests.
44
     */
44
     */
-
 
45
    public function setUp(): void {
45
    public function setUp(): void {
46
        parent::setUp();
46
        $this->resetAfterTest(true);
47
        $this->resetAfterTest(true);
Línea 47... Línea 48...
47
    }
48
    }
48
 
49