Proyectos de Subversion Moodle

Rev

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

Rev 11 Rev 1441
Línea 29... Línea 29...
29
 * @covers    \core_group\customfield\group_handler
29
 * @covers    \core_group\customfield\group_handler
30
 * @author    Tomo Tsuyuki <tomotsuyuki@catalyst-au.net>
30
 * @author    Tomo Tsuyuki <tomotsuyuki@catalyst-au.net>
31
 * @copyright 2023 Catalyst IT Pty Ltd
31
 * @copyright 2023 Catalyst IT Pty Ltd
32
 * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
32
 * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
33
 */
33
 */
34
class group_handler_test extends advanced_testcase {
34
final class group_handler_test extends advanced_testcase {
35
    /**
35
    /**
36
     * Test custom field handler.
36
     * Test custom field handler.
37
     * @var group_handler
37
     * @var group_handler
38
     */
38
     */
39
    protected $handler;
39
    protected $handler;
Línea 40... Línea 40...
40
 
40
 
41
    /**
41
    /**
42
     * Setup.
42
     * Setup.
43
     */
43
     */
-
 
44
    public function setUp(): void {
44
    public function setUp(): void {
45
        parent::setUp();
45
        $this->handler = group_handler::create();
46
        $this->handler = group_handler::create();
Línea 46... Línea 47...
46
    }
47
    }
47
 
48