Proyectos de Subversion Moodle

Rev

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

Rev 11 Rev 1441
Línea 30... Línea 30...
30
 * Unit tests for ltiservice_gradebookservices privacy provider.
30
 * Unit tests for ltiservice_gradebookservices privacy provider.
31
 *
31
 *
32
 * @copyright  2018 Mark Nelson <markn@moodle.com>
32
 * @copyright  2018 Mark Nelson <markn@moodle.com>
33
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
33
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
34
 */
34
 */
35
class provider_test extends provider_testcase {
35
final class provider_test extends provider_testcase {
Línea 36... Línea 36...
36
 
36
 
37
    /**
37
    /**
38
     * Basic setup for these tests.
38
     * Basic setup for these tests.
39
     */
39
     */
-
 
40
    public function setUp(): void {
40
    public function setUp(): void {
41
        parent::setUp();
41
        $this->resetAfterTest(true);
42
        $this->resetAfterTest(true);
Línea 42... Línea 43...
42
    }
43
    }
43
 
44