ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
MarkSchemaGUITest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 {
29 
30  protected function setUp(): void
31  {
32  parent::setUp();
33 
34  $this->addGlobal_tpl();
35  $this->addGlobal_ilToolbar();
36  $this->addGlobal_ilTabs();
37 
38  $this->testObj = new MarkSchemaGUI(
39  $this->getTestObjMock(),
40  $this->createMock(ilObjUser::class),
41  $this->createMock(ilLanguage::class),
42  $this->createMock(ilCtrl::class),
43  $this->createMock(ilGlobalTemplateInterface::class),
44  $this->createMock(ilToolbarGUI::class),
45  $this->createMock(\ILIAS\Test\Logging\TestLogger::class),
46  $this->createMock(ILIAS\HTTP\Wrapper\RequestWrapper::class),
47  $this->createMock(ILIAS\HTTP\Wrapper\RequestWrapper::class),
48  $this->createMock(ILIAS\Test\ResponseHandler::class),
49  $this->createMock(\GuzzleHttp\Psr7\Request::class),
50  $this->createMock(ILIAS\Refinery\Factory::class),
51  $this->createMock(ILIAS\UI\Factory::class),
52  $this->createMock(ILIAS\UI\Renderer::class)
53  );
54  }
55 
57  {
58  $this->assertInstanceOf(MarkSchemaGUI::class, $this->testObj);
59  }
60 }
Interface Observer Contains several chained tasks and infos about them.
MarkSchemaGUI $testObj
test_instantiateObject_shouldReturnInstance()