ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
SkillInternalPersonalFactoryTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Skill\Personal;
22 
24 
28 class SkillInternalPersonalFactoryTest extends TestCase
29 {
33 
34  protected function setUp(): void
35  {
36  parent::setUp();
37 
38  $this->factory = new PersonalSkillFactory();
39 
40  $this->selected_skill = $this->factory->selectedUserSkill(0, "");
41  $this->material = $this->factory->assignedMaterial(0, 0, 0, 0, 0, 0);
42  }
43 
44  public function testFactoryInstances(): void
45  {
46  $this->assertInstanceOf(SelectedUserSkill::class, $this->selected_skill);
47  $this->assertInstanceOf(AssignedMaterial::class, $this->material);
48  }
49 }
factory()