Proyectos de Subversion Moodle

Rev

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

Rev 11 Rev 1441
Línea 34... Línea 34...
34
 *
34
 *
35
 * @package    mod_choice
35
 * @package    mod_choice
36
 * @copyright  2013 Adrian Greeve <adrian@moodle.com>
36
 * @copyright  2013 Adrian Greeve <adrian@moodle.com>
37
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
37
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
38
 */
38
 */
39
class events_test extends \advanced_testcase {
39
final class events_test extends \advanced_testcase {
40
    /** @var choice_object */
40
    /** @var choice_object */
41
    protected $choice;
41
    protected $choice;
Línea 42... Línea 42...
42
 
42
 
43
    /** @var course_object */
43
    /** @var course_object */
Línea 52... Línea 52...
52
    /**
52
    /**
53
     * Setup often used objects for the following tests.
53
     * Setup often used objects for the following tests.
54
     */
54
     */
55
    protected function setUp(): void {
55
    protected function setUp(): void {
56
        global $DB;
56
        global $DB;
-
 
57
        parent::setUp();
Línea 57... Línea 58...
57
 
58
 
Línea 58... Línea 59...
58
        $this->resetAfterTest();
59
        $this->resetAfterTest();
59
 
60