Proyectos de Subversion Moodle

Rev

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

Rev 1 Rev 1441
Línea 30... Línea 30...
30
 * @category   test
30
 * @category   test
31
 * @copyright  2023 Juan Leyva (juan@moodle.com)
31
 * @copyright  2023 Juan Leyva (juan@moodle.com)
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
 * @coversDefaultClass \core_search\external\get_top_results
33
 * @coversDefaultClass \core_search\external\get_top_results
34
 */
34
 */
35
class get_top_results_test extends \externallib_advanced_testcase {
35
final class get_top_results_test extends \externallib_advanced_testcase {
Línea 36... Línea 36...
36
 
36
 
-
 
37
    public function setUp(): void {
37
    public function setUp(): void {
38
        parent::setUp();
38
        $this->resetAfterTest();
39
        $this->resetAfterTest();
Línea 39... Línea 40...
39
    }
40
    }
40
 
41