Proyectos de Subversion Moodle

Rev

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

Rev 11 Rev 1441
Línea 27... Línea 27...
27
 *
27
 *
28
 * @package    tool_dataprivacy
28
 * @package    tool_dataprivacy
29
 * @copyright  2018 Mihail Geshoski <mihail@moodle.com>
29
 * @copyright  2018 Mihail Geshoski <mihail@moodle.com>
30
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
30
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
31
 */
31
 */
32
class task_test extends \data_privacy_testcase {
32
final class task_test extends \data_privacy_testcase {
Línea 33... Línea 33...
33
 
33
 
Línea 34... Línea 34...
34
    use task_trait;
34
    use task_trait;
35
 
35
 
36
    /**
36
    /**
37
     * Test tearDown.
37
     * Test tearDown.
38
     */
38
     */
-
 
39
    public function tearDown(): void {
39
    public function tearDown(): void {
40
        \core_privacy\local\request\writer::reset();
Línea 40... Línea 41...
40
        \core_privacy\local\request\writer::reset();
41
        parent::tearDown();
41
    }
42
    }
42
 
43