ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
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(
32  $this->createMock(ilDBInterface::class)
33  );
34  }
35 
37  {
38  $this->assertInstanceOf(ilTestSkillLevelThresholdList::class, $this->testObj);
39  }
40 
41  public function testTestId(): void
42  {
43  $this->testObj->setTestId(20);
44  $this->assertEquals(20, $this->testObj->getTestId());
45  }
46 }
Class ilTestBaseClass.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...