Proyectos de Subversion Moodle

Rev

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

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