Proyectos de Subversion Moodle

Rev

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

Rev 11 Rev 1441
Línea 42... Línea 42...
42
 *
42
 *
43
 * @copyright  2018 Zig Tan <zig@moodle.com>
43
 * @copyright  2018 Zig Tan <zig@moodle.com>
44
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
44
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
45
 * @covers \core_calendar\privacy\provider
45
 * @covers \core_calendar\privacy\provider
46
 */
46
 */
47
class provider_test extends provider_testcase {
47
final class provider_test extends provider_testcase {
Línea 48... Línea 48...
48
 
48
 
49
    /**
49
    /**
50
     * Overriding setUp() function to always reset after tests.
50
     * Overriding setUp() function to always reset after tests.
51
     */
51
     */
-
 
52
    public function setUp(): void {
52
    public function setUp(): void {
53
        parent::setUp();
53
        $this->resetAfterTest(true);
54
        $this->resetAfterTest(true);
Línea 54... Línea 55...
54
    }
55
    }
55
 
56