Proyectos de Subversion Moodle

Rev

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

Rev 11 Rev 1441
Línea 28... Línea 28...
28
 * @package core_message
28
 * @package core_message
29
 * @category test
29
 * @category test
30
 * @copyright 2018 Mark Nelson <markn@moodle.com>
30
 * @copyright 2018 Mark Nelson <markn@moodle.com>
31
 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
31
 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
32
 */
32
 */
33
class migrate_message_data_test extends \advanced_testcase {
33
final class migrate_message_data_test extends \advanced_testcase {
Línea 34... Línea 34...
34
 
34
 
35
    /**
35
    /**
36
     * Test set up.
36
     * Test set up.
37
     *
37
     *
38
     * This is executed before running any test in this file.
38
     * This is executed before running any test in this file.
39
     */
39
     */
-
 
40
    public function setUp(): void {
40
    public function setUp(): void {
41
        parent::setUp();
41
        $this->resetAfterTest();
42
        $this->resetAfterTest();
Línea 42... Línea 43...
42
    }
43
    }
43
 
44