ILIAS  trunk Revision v11.0_alpha-1761-g6dbbfa7b760
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilQTIRenderHotspotTest.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(ilQTIRenderHotspot::class, new ilQTIRenderHotspot());
28  }
29 
30  public function testSetGetMinnumber(): void
31  {
32  $instance = new ilQTIRenderHotspot();
33  $instance->setMinnumber('Some input.');
34  $this->assertEquals('Some input.', $instance->getMinnumber());
35  }
36 
37  public function testSetGetMaxnumber(): void
38  {
39  $instance = new ilQTIRenderHotspot();
40  $instance->setMaxnumber('Some input.');
41  $this->assertEquals('Some input.', $instance->getMaxnumber());
42  }
43 }