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
 * Privacy tests for enrol_flatfile.
36
 * Privacy tests for enrol_flatfile.
37
 *
37
 *
38
 * @copyright  2018 Jake Dallimore <jrhdallimore@gmail.com>
38
 * @copyright  2018 Jake Dallimore <jrhdallimore@gmail.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
    /** @var \stdClass $user1 a test user.*/
43
    /** @var \stdClass $user1 a test user.*/
Línea 44... Línea 44...
44
    protected $user1;
44
    protected $user1;
Línea 63... Línea 63...
63
 
63
 
64
    /**
64
    /**
65
     * Called before every test.
65
     * Called before every test.
66
     */
66
     */
-
 
67
    public function setUp(): void {
67
    public function setUp(): void {
68
        parent::setUp();
68
        $this->resetAfterTest(true);
69
        $this->resetAfterTest(true);
Línea 69... Línea 70...
69
    }
70
    }
70
 
71