Proyectos de Subversion Moodle

Rev

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

Rev 11 Rev 1441
Línea 34... Línea 34...
34
 * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
34
 * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
35
 * @author    Laurent David (laurent@call-learning.fr)
35
 * @author    Laurent David (laurent@call-learning.fr)
36
 * @covers \mod_bigbluebuttonbn\search\tags
36
 * @covers \mod_bigbluebuttonbn\search\tags
37
 * @covers \mod_bigbluebuttonbn\search\activity
37
 * @covers \mod_bigbluebuttonbn\search\activity
38
 */
38
 */
39
class search_test extends advanced_testcase {
39
final class search_test extends advanced_testcase {
40
    use testcase_helper_trait;
40
    use testcase_helper_trait;
41
    /**
41
    /**
42
     * @var string Area id
42
     * @var string Area id
43
     */
43
     */
44
    protected $bbbactivtyarea = null;
44
    protected $bbbactivtyarea = null;
Línea 45... Línea 45...
45
 
45
 
-
 
46
    public function setUp(): void {
46
    public function setUp(): void {
47
        parent::setUp();
47
        set_config('enableglobalsearch', true);
48
        set_config('enableglobalsearch', true);
48
        $this->bbbactivtyarea = \core_search\manager::get_search_area('mod_bigbluebuttonbn-activity');
49
        $this->bbbactivtyarea = \core_search\manager::get_search_area('mod_bigbluebuttonbn-activity');
Línea 49... Línea 50...
49
    }
50
    }