27 protected function setUp(): void
32 $this->createMock(ilLanguage::class),
39 $this->assertInstanceOf(ilTestPersonalSkillsGUI::class, $this->testObj);
45 "test123" =>
"test12",
48 $this->testObj->setAvailableSkills($expected);
49 $this->assertEquals($expected, $this->testObj->getAvailableSkills());
54 $this->testObj->setSelectedSkillProfile(4);
55 $this->assertEquals(4, $this->testObj->getSelectedSkillProfile());
61 "test123" =>
"test12",
64 $this->testObj->setReachedSkillLevels($expected);
65 $this->assertEquals($expected, $this->testObj->getReachedSkillLevels());
70 $this->testObj->setUsrId(212);
71 $this->assertEquals(212, $this->testObj->getUsrId());
testSelectedSkillProfile()
ilTestPersonalSkillsGUI $testObj
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
test_instantiateObject_shouldReturnInstance()