ILIAS  trunk Revision v11.0_alpha-2638-g80c1d007f79
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  $this->createMock(\ILIAS\ResourceStorage\Services::class)
50  );
51  }
52 
54  {
55  $this->assertInstanceOf(Factory::class, $this->testObj);
56  }
57 }
Interface Observer Contains several chained tasks and infos about them.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilTestBaseClass.