Proyectos de Subversion Moodle

Rev

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

Rev 11 Rev 1441
Línea 36... Línea 36...
36
 * Tests for the forum implementation of the Privacy Provider API.
36
 * Tests for the forum implementation of the Privacy Provider API.
37
 *
37
 *
38
 * @copyright  2018 Andrew Nicols <andrew@nicols.co.uk>
38
 * @copyright  2018 Andrew Nicols <andrew@nicols.co.uk>
39
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
39
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
40
 */
40
 */
41
class provider_test extends \core_privacy\tests\provider_testcase {
41
final class provider_test extends \core_privacy\tests\provider_testcase {
Línea 42... Línea 42...
42
 
42
 
43
    // Include the privacy subcontext_info trait.
43
    // Include the privacy subcontext_info trait.
44
    // This includes the subcontext builders.
44
    // This includes the subcontext builders.
Línea 56... Línea 56...
56
 
56
 
57
    /**
57
    /**
58
     * Test setUp.
58
     * Test setUp.
59
     */
59
     */
-
 
60
    public function setUp(): void {
60
    public function setUp(): void {
61
        parent::setUp();
61
        $this->resetAfterTest(true);
62
        $this->resetAfterTest(true);
Línea 62... Línea 63...
62
    }
63
    }
63
 
64