ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
ilMarkSchemaGUITest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 {
28 
29  protected function setUp(): void
30  {
31  parent::setUp();
32 
33  $this->addGlobal_ilCtrl();
34  $this->addGlobal_lng();
35  $this->addGlobal_tpl();
36  $this->addGlobal_ilToolbar();
37  $this->addGlobal_ilTabs();
38 
39  $this->testObj = new ilMarkSchemaGUI(
40  $this->createMock(ilMarkSchemaAware::class)
41  );
42  }
43 
45  {
46  $this->assertInstanceOf(ilMarkSchemaGUI::class, $this->testObj);
47  }
48 }
ilMarkSchemaGUI $testObj
Class ilMarkSchemaGUITest.
Class ilTestBaseClass.