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 cohort\classes\privacy\provider.php
36
 * Unit tests for cohort\classes\privacy\provider.php
37
 *
37
 *
38
 * @copyright  2018 Sara Arjona <sara@moodle.com>
38
 * @copyright  2018 Sara Arjona <sara@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 provider_testcase {
41
final class provider_test extends provider_testcase {
Línea 42... Línea 42...
42
 
42
 
43
    /**
43
    /**
44
     * Basic setup for these tests.
44
     * Basic setup for these tests.
45
     */
45
     */
-
 
46
    public function setUp(): void {
46
    public function setUp(): void {
47
        parent::setUp();
47
        $this->resetAfterTest(true);
48
        $this->resetAfterTest(true);
Línea 48... Línea 49...
48
    }
49
    }
49
 
50