ILIAS  trunk Revision v11.0_alpha-1731-gff9cd7e2bd3
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilTestSkillLevelThresholdListTest.php
Go to the documentation of this file.
1 <?php
2 
24 {
26 
27  protected function setUp(): void
28  {
29  parent::setUp();
30 
31  $this->testObj = new ilTestSkillLevelThresholdList($this->createMock(ilDBInterface::class));
32  }
33 
35  {
36  $this->assertInstanceOf(ilTestSkillLevelThresholdList::class, $this->testObj);
37  }
38 
39  public function testTestId(): void
40  {
41  $testId = 20;
42  $this->testObj->setTestId($testId);
43  $this->assertEquals($testId, $this->testObj->getTestId());
44  }
45 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...