ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ExportRandomQuestionSetTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
29 {
31 
32  protected function setUp(): void
33  {
34  global $DIC;
35  parent::setUp();
36 
37  $this->addGlobal_ilErr();
38 
39  $this->testObj = new ExportRandomQuestionSet(
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  $DIC['component.repository'],
46  $this->createMock(\ILIAS\TestQuestionPool\Questions\GeneralQuestionPropertiesRepository::class),
47  $this->createMock(\ILIAS\FileDelivery\Services::class),
48  $this->getTestObjMock()
49  );
50  }
51 
53  {
54  $this->assertInstanceOf(ExportRandomQuestionSet::class, $this->testObj);
55  }
56 }
Interface Observer Contains several chained tasks and infos about them.
global $DIC
Definition: shib_login.php:22
Class ilTestBaseClass.