ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
TestScreenGUITest.php
Go to the documentation of this file.
1 <?php
2 
20 
26 
28 {
29  public function testConstruct(): void
30  {
31  $TestScreenGUI = new TestScreenGUI(
32  $this->getTestObjMock(),
33  $this->createMock(\ilObjUser::class),
34  $this->createMock(UIFactory::class),
35  $this->createMock(UIRenderer::class),
36  $this->createMock(\ilLanguage::class),
37  $this->createMock(Refinery::class),
38  $this->createMock(\ilCtrl::class),
39  $this->createMock(\ilGlobalTemplateInterface::class),
40  $this->createMock(\ILIAS\Style\Content\Service::class),
41  $this->createMock(HTTPServices::class),
42  $this->createMock(\ILIAS\Test\Presentation\TabsManager::class),
43  $this->createMock(\ilAccessHandler::class),
44  $this->createMock(\ilTestAccess::class),
45  $this->createMock(\ilDBInterface::class),
46  $this->createMock(\ilRbacSystem::class)
47  );
48  $this->assertInstanceOf(TestScreenGUI::class, $TestScreenGUI);
49  }
50 }
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.