Proyectos de Subversion Moodle

Rev

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

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