ILIAS
trunk Revision v12.0_alpha-1221-g4e438232683
◀ ilDoc Overview
ilQTIFlowMatTest.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
ilQTIFlowMatTest
extends
TestCase
24
{
25
public
function
testConstruct
(): void
26
{
27
$this->assertInstanceOf(ilQTIFlowMat::class,
new
ilQTIFlowMat
());
28
}
29
30
public
function
testSetGetComment
(): void
31
{
32
$instance =
new
ilQTIFlowMat
();
33
$instance->setComment(
'Some input.'
);
34
$this->assertEquals(
'Some input.'
, $instance->getComment());
35
}
36
}
ilQTIFlowMatTest
Definition:
ilQTIFlowMatTest.php:24
ilQTIFlowMatTest\testSetGetComment
testSetGetComment()
Definition:
ilQTIFlowMatTest.php:30
ilQTIFlowMatTest\testConstruct
testConstruct()
Definition:
ilQTIFlowMatTest.php:25
ilQTIFlowMat
Definition:
class.ilQTIFlowMat.php:30
components
ILIAS
TestQuestionPool
tests
QTI
ilQTIFlowMatTest.php
Generated on Sun Apr 5 2026 23:04:43 for ILIAS by
1.9.4 (using
Doxyfile
)