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