ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
SkillInternalFactoryServiceTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Skill\Service;
22 
28 
32 class SkillInternalFactoryServiceTest extends TestCase
33 {
39 
40  protected function setUp(): void
41  {
42  parent::setUp();
43 
44  $this->factory = new SkillInternalFactoryService();
45 
46  $this->profile_fac = $this->factory->profile();
47  $this->personal_fac = $this->factory->personal();
48  $this->tree_fac = $this->factory->tree();
49  $this->resource_fac = $this->factory->resource();
50  }
51 
52  public function testFactoryInstances(): void
53  {
54  $this->assertInstanceOf(Profile\SkillProfileFactory::class, $this->profile_fac);
55  $this->assertInstanceOf(Personal\PersonalSkillFactory::class, $this->personal_fac);
56  $this->assertInstanceOf(Tree\SkillTreeFactory::class, $this->tree_fac);
57  $this->assertInstanceOf(Resource\SkillResourceFactory::class, $this->resource_fac);
58  }
59 }
factory()