Proyectos de Subversion Moodle

Rev

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

Rev 1 Rev 1441
Línea 27... Línea 27...
27
 * @package    tool_usertours
27
 * @package    tool_usertours
28
 * @copyright  2016 Andrew Nicols <andrew@nicols.co.uk>
28
 * @copyright  2016 Andrew Nicols <andrew@nicols.co.uk>
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
 * @covers \tool_usertours\step
30
 * @covers \tool_usertours\step
31
 */
31
 */
32
class step_test extends \advanced_testcase {
32
final class step_test extends \advanced_testcase {
33
    /**
33
    /**
34
     * @var moodle_database
34
     * @var moodle_database
35
     */
35
     */
36
    protected $db;
36
    protected $db;
Línea 37... Línea 37...
37
 
37
 
38
    /**
38
    /**
39
     * Setup to store the DB reference.
39
     * Setup to store the DB reference.
40
     */
40
     */
41
    public function setUp(): void {
41
    public function setUp(): void {
-
 
42
        global $DB;
Línea 42... Línea 43...
42
        global $DB;
43
        parent::setUp();
43
 
44
 
Línea 44... Línea 45...
44
        $this->db = $DB;
45
        $this->db = $DB;
Línea 49... Línea 50...
49
     */
50
     */
50
    public function tearDown(): void {
51
    public function tearDown(): void {
51
        global $DB;
52
        global $DB;
Línea 52... Línea 53...
52
 
53
 
-
 
54
        $DB = $this->db;
53
        $DB = $this->db;
55
        parent::tearDown();
Línea 54... Línea 56...
54
    }
56
    }
55
 
57
 
56
    /**
58
    /**