Proyectos de Subversion Moodle

Rev

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

Rev 11 Rev 1441
Línea 25... Línea 25...
25
 * @package    core
25
 * @package    core
26
 * @category   test
26
 * @category   test
27
 * @copyright  2016 Stephen Bourget
27
 * @copyright  2016 Stephen Bourget
28
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
28
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
29
 */
29
 */
30
class events_test extends \advanced_testcase {
30
final class events_test extends \advanced_testcase {
Línea 31... Línea 31...
31
 
31
 
32
    /** @var user cobject */
32
    /** @var user cobject */
Línea 33... Línea 33...
33
    protected $user;
33
    protected $user;
34
 
34
 
35
    /**
35
    /**
36
     * Setup often used objects for the following tests.
36
     * Setup often used objects for the following tests.
37
     */
37
     */
-
 
38
    protected function setUp(): void {
Línea 38... Línea 39...
38
    protected function setUp(): void {
39
        global $USER;
Línea 39... Línea 40...
39
        global $USER;
40
        parent::setUp();
40
 
41