ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
◀ ilDoc Overview
ilQTIOutcomesTest.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
use PHPUnit\Framework\TestCase;
22
23
class
ilQTIOutcomesTest
extends
TestCase
24
{
25
public
function
testConstruct
(): void
26
{
27
$this->assertInstanceOf(ilQTIOutcomes::class,
new
ilQTIOutcomes
());
28
}
29
30
public
function
testSetGetComment
(): void
31
{
32
$instance =
new
ilQTIOutcomes
();
33
$instance->setComment(
'Some input.'
);
34
$this->assertEquals(
'Some input.'
, $instance->getComment());
35
}
36
}
ilQTIOutcomesTest
Definition:
ilQTIOutcomesTest.php:24
ilQTIOutcomesTest\testConstruct
testConstruct()
Definition:
ilQTIOutcomesTest.php:25
ilQTIOutcomesTest\testSetGetComment
testSetGetComment()
Definition:
ilQTIOutcomesTest.php:30
ilQTIOutcomes
Definition:
class.ilQTIOutcomes.php:30
components
ILIAS
TestQuestionPool
tests
QTI
ilQTIOutcomesTest.php
Generated on Sun Oct 19 2025 23:04:28 for ILIAS by
1.9.4 (using
Doxyfile
)