Proyectos de Subversion Moodle

Rev

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

Rev 11 Rev 1441
Línea 33... Línea 33...
33
 * Unit tests for user\profile\field\textarea\classes\privacy\provider.php
33
 * Unit tests for user\profile\field\textarea\classes\privacy\provider.php
34
 *
34
 *
35
 * @copyright  2018 Mihail Geshoski <mihail@moodle.com>
35
 * @copyright  2018 Mihail Geshoski <mihail@moodle.com>
36
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
36
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
37
 */
37
 */
38
class provider_test extends provider_testcase {
38
final class provider_test extends provider_testcase {
Línea 39... Línea 39...
39
 
39
 
40
    /**
40
    /**
41
     * Basic setup for these tests.
41
     * Basic setup for these tests.
42
     */
42
     */
-
 
43
    public function setUp(): void {
43
    public function setUp(): void {
44
        parent::setUp();
44
        $this->resetAfterTest(true);
45
        $this->resetAfterTest(true);
Línea 45... Línea 46...
45
    }
46
    }
46
 
47