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
 * @package   core
34
 * @package   core
35
 * @category  test
35
 * @category  test
36
 * @copyright 2018 Andrew Nicols <andrew@nicols.co.uk>
36
 * @copyright 2018 Andrew Nicols <andrew@nicols.co.uk>
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 logging_test extends \advanced_testcase {
39
final class logging_test extends \advanced_testcase {
Línea 40... Línea 40...
40
 
40
 
41
    /**
41
    /**
42
     * @var \moodle_database The original database prior to mocking
42
     * @var \moodle_database The original database prior to mocking
43
     */
43
     */
Línea 54... Línea 54...
54
 
54
 
55
        if (null !== $this->DB) {
55
        if (null !== $this->DB) {
56
            $DB = $this->DB;
56
            $DB = $this->DB;
57
            $this->DB = null;
57
            $this->DB = null;
-
 
58
        }
58
        }
59
        parent::tearDown();
Línea 59... Línea 60...
59
    }
60
    }
60
 
61
 
61
    /**
62
    /**