ILIAS  trunk Revision v11.0_alpha-1753-gb21ca8c4367
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ExportFactoryTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
30 {
31  private Factory $testObj;
32 
33  protected function setUp(): void
34  {
35  parent::setUp();
36 
37  $this->testObj = new Factory(
38  $this->createMock(\ilLanguage::class),
39  $this->createMock(\ilDBInterface::class),
40  $this->createMock(\ilBenchmark::class),
41  $this->createMock(\ilGlobalTemplateInterface::class),
42  $this->createMock(\ILIAS\Test\Logging\TestLogger::class),
43  $this->createMock(\ilTree::class),
44  $this->createMock(\ilComponentRepository::class),
45  $this->createMock(\ilComponentFactory::class),
46  $this->createMock(\ILIAS\FileDelivery\Services::class),
47  $this->createMock(\ilObjUser::class),
48  $this->createMock(GeneralQuestionPropertiesRepository::class)
49  );
50  }
51 
53  {
54  $this->assertInstanceOf(Factory::class, $this->testObj);
55  }
56 }
Interface Observer Contains several chained tasks and infos about them.
Class ilTestBaseClass.