Proyectos de Subversion Moodle

Rev

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

Rev 11 Rev 1441
Línea 33... Línea 33...
33
 * @package    mod_url
33
 * @package    mod_url
34
 * @category   phpunit
34
 * @category   phpunit
35
 * @copyright  2011 Petr Skoda {@link http://skodak.org}
35
 * @copyright  2011 Petr Skoda {@link http://skodak.org}
36
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
36
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
37
 */
37
 */
38
class lib_test extends \advanced_testcase {
38
final class lib_test extends \advanced_testcase {
Línea 39... Línea 39...
39
 
39
 
40
    /**
40
    /**
41
     * Prepares things before this test case is initialised
41
     * Prepares things before this test case is initialised
42
     * @return void
42
     * @return void
43
     */
43
     */
44
    public static function setUpBeforeClass(): void {
44
    public static function setUpBeforeClass(): void {
45
        global $CFG;
45
        global $CFG;
46
        require_once($CFG->dirroot . '/mod/url/lib.php');
46
        require_once($CFG->dirroot . '/mod/url/lib.php');
-
 
47
        require_once($CFG->dirroot . '/mod/url/locallib.php');
47
        require_once($CFG->dirroot . '/mod/url/locallib.php');
48
        parent::setUpBeforeClass();
Línea 48... Línea 49...
48
    }
49
    }
49
 
50
 
50
    /**
51
    /**