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
 * @package     core
36
 * @package     core
37
 * @category    phpunit
37
 * @category    phpunit
38
 * @copyright   2016 David Monllao {@link http://www.davidmonllao.com}
38
 * @copyright   2016 David Monllao {@link http://www.davidmonllao.com}
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 search_test extends \advanced_testcase {
41
final class search_test extends \advanced_testcase {
Línea 42... Línea 42...
42
 
42
 
43
    /**
43
    /**
44
     * @var string Area id
44
     * @var string Area id
45
     */
45
     */
Línea 54... Línea 54...
54
     * @var string Area id for custom fields.
54
     * @var string Area id for custom fields.
55
     */
55
     */
56
    protected $customfieldareaid = null;
56
    protected $customfieldareaid = null;
Línea 57... Línea 57...
57
 
57
 
-
 
58
    public function setUp(): void {
58
    public function setUp(): void {
59
        parent::setUp();
59
        $this->resetAfterTest(true);
60
        $this->resetAfterTest(true);
Línea 60... Línea 61...
60
        set_config('enableglobalsearch', true);
61
        set_config('enableglobalsearch', true);
61
 
62