Proyectos de Subversion Moodle

Rev

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

Rev 11 Rev 1441
Línea 31... Línea 31...
31
 *
31
 *
32
 * @package    qtype_random
32
 * @package    qtype_random
33
 * @copyright  2010 The Open University
33
 * @copyright  2010 The Open University
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
 */
35
 */
36
class question_type_test extends \advanced_testcase {
36
final class question_type_test extends \advanced_testcase {
37
    protected $qtype;
37
    protected $qtype;
Línea 38... Línea 38...
38
 
38
 
-
 
39
    protected function setUp(): void {
39
    protected function setUp(): void {
40
        parent::setUp();
40
        $this->qtype = new qtype_random();
41
        $this->qtype = new qtype_random();
Línea 41... Línea 42...
41
    }
42
    }
42
 
43
 
-
 
44
    protected function tearDown(): void {
43
    protected function tearDown(): void {
45
        $this->qtype = null;
Línea 44... Línea 46...
44
        $this->qtype = null;
46
        parent::tearDown();
45
    }
47
    }
46
 
48