Proyectos de Subversion Moodle

Rev

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

Rev 11 Rev 1441
Línea 32... Línea 32...
32
 * Unit tests for the gradereport_user implementation of the privacy API.
32
 * Unit tests for the gradereport_user implementation of the privacy API.
33
 *
33
 *
34
 * @copyright  2018 Sara Arjona <sara@moodle.com>
34
 * @copyright  2018 Sara Arjona <sara@moodle.com>
35
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
35
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
36
 */
36
 */
37
class provider_test extends \core_privacy\tests\provider_testcase {
37
final class provider_test extends \core_privacy\tests\provider_testcase {
Línea 38... Línea 38...
38
 
38
 
39
    /**
39
    /**
40
     * Basic setup for these tests.
40
     * Basic setup for these tests.
41
     */
41
     */
-
 
42
    public function setUp(): void {
42
    public function setUp(): void {
43
        parent::setUp();
43
        $this->resetAfterTest(true);
44
        $this->resetAfterTest(true);
Línea 44... Línea 45...
44
    }
45
    }
45
 
46