Proyectos de Subversion Moodle

Rev

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

Rev 11 Rev 1441
Línea 26... Línea 26...
26
 *
26
 *
27
 * @package core
27
 * @package core
28
 * @copyright 2017 Mark Nelson <markn@moodle.com>
28
 * @copyright 2017 Mark Nelson <markn@moodle.com>
29
 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
29
 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
30
 */
30
 */
31
class calendar_cron_task_test extends \advanced_testcase {
31
final class calendar_cron_task_test extends \advanced_testcase {
Línea 32... Línea 32...
32
 
32
 
33
    /**
33
    /**
34
     * Tests set up
34
     * Tests set up
35
     */
35
     */
-
 
36
    protected function setUp(): void {
36
    protected function setUp(): void {
37
        parent::setUp();
37
        $this->resetAfterTest();
38
        $this->resetAfterTest();
Línea 38... Línea 39...
38
    }
39
    }
39
 
40