ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilQTIFlowMatTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
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 }