3 declare(strict_types=1);
29 protected function setUp(): void
34 $this->createMock(ilLanguage::class),
41 $this->assertInstanceOf(ilTestPersonalSkillsGUI::class, $this->testObj);
47 "test123" =>
"test12",
50 $this->testObj->setAvailableSkills($expected);
51 $this->assertEquals($expected, $this->testObj->getAvailableSkills());
56 $this->testObj->setSelectedSkillProfile(
"testString");
57 $this->assertEquals(
"testString", $this->testObj->getSelectedSkillProfile());
63 "test123" =>
"test12",
66 $this->testObj->setReachedSkillLevels($expected);
67 $this->assertEquals($expected, $this->testObj->getReachedSkillLevels());
72 $this->testObj->setUsrId(212);
73 $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()