Proyectos de Subversion Moodle

Rev

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

Rev 11 Rev 1441
Línea 33... Línea 33...
33
 *
33
 *
34
 * @package    qtype_description
34
 * @package    qtype_description
35
 * @copyright  2013 The Open University
35
 * @copyright  2013 The Open University
36
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
36
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
37
 */
37
 */
38
class question_type_test extends \advanced_testcase {
38
final class question_type_test extends \advanced_testcase {
39
    protected $qtype;
39
    protected $qtype;
Línea 40... Línea 40...
40
 
40
 
-
 
41
    protected function setUp(): void {
41
    protected function setUp(): void {
42
        parent::setUp();
42
        $this->qtype = new qtype_description();
43
        $this->qtype = new qtype_description();
Línea 43... Línea 44...
43
    }
44
    }
44
 
45
 
-
 
46
    protected function tearDown(): void {
45
    protected function tearDown(): void {
47
        $this->qtype = null;
Línea 46... Línea 48...
46
        $this->qtype = null;
48
        parent::tearDown();
47
    }
49
    }
48
 
50