Proyectos de Subversion Moodle

Rev

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

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