ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ExportFactoryTest.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25
30{
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}
Class ilTestBaseClass.
Interface Observer \BackgroundTasks Contains several chained tasks and infos about them.