ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
ilAssQuestionSkillAssignmentsGUITest.php
Go to the documentation of this file.
1<?php
2
19use ILIAS\HTTP\Services as HTTP;
20use ILIAS\Refinery\Factory as Refinery;
23use ILIAS\UI\Factory as UIFactory;
24use ILIAS\UI\Renderer as UIRenderer;
25
36{
37 protected $backupGlobals = false;
38
40
41 protected function setUp(): void
42 {
43 parent::setUp();
44
45 $this->object = new ilAssQuestionSkillAssignmentsGUI(
46 $this->createMock(ilCtrl::class),
47 $this->createMock(ilAccessHandler::class),
48 $this->createMock(ilGlobalTemplateInterface::class),
49 $this->createMock(ilLanguage::class),
50 $this->createMock(ilDBInterface::class),
51 $this->createMock(RequestDataCollector::class),
52 $this->createMock(SkillUsageService::class),
53 $this->createMock(UIFactory::class),
54 $this->createMock(UIRenderer::class),
55 $this->createMock(Refinery::class),
56 $this->createMock(HTTP::class),
57 $this->createMock(ilToolbarGUI::class),
58 $this->createMock(ilTabsGUI::class)
59 );
60 }
61
62 public function testConstruct(): void
63 {
64 $this->assertInstanceOf(ilAssQuestionSkillAssignmentsGUI::class, $this->object);
65 }
66}
Builds a Color from either hex- or rgb values.
Definition: Factory.php:31
Builds data types.
Definition: Factory.php:36
Class Services.
Definition: Services.php:38
Class assBaseTestCase.
An entity that renders components to a string output.
Definition: Renderer.php:31