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
 * @package   core_grades
36
 * @package   core_grades
37
 * @category  test
37
 * @category  test
38
 * @copyright 2017 Stephen Bourget
38
 * @copyright 2017 Stephen Bourget
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 events_test extends \advanced_testcase {
41
final class events_test extends \advanced_testcase {
Línea 42... Línea 42...
42
 
42
 
43
    /** @var stdClass the course used for testing */
43
    /** @var stdClass the course used for testing */
Línea 44... Línea 44...
44
    private $course;
44
    private $course;
45
 
45
 
46
    /**
46
    /**
47
     * Test set up.
47
     * Test set up.
48
     *
48
     *
49
     * This is executed before running any test in this file.
49
     * This is executed before running any test in this file.
-
 
50
     */
50
     */
51
    public function setUp(): void {
Línea 51... Línea 52...
51
    public function setUp(): void {
52
        parent::setUp();
52
        $this->resetAfterTest();
53
        $this->resetAfterTest();
53
 
54