ILIAS  release_8 Revision v8.19-1-g4e8f2f9140c
All Data Structures Namespaces Files Functions Variables Modules Pages
ilTestCorrectionsGUITest.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
26 {
28 
29  protected function setUp(): void
30  {
31  global $DIC;
32 
33  parent::setUp();
34 
35  $this->addGlobal_ilAccess();
36  $this->addGlobal_ilCtrl();
37  $this->addGlobal_ilDB();
38  $this->addGlobal_ilHelp();
39  $this->addGlobal_ilTabs();
40  $this->addGlobal_http();
41  $this->addGlobal_refinery();
42 
43  $this->testObj = new ilTestCorrectionsGUI(
44  $DIC,
45  $this->createMock(ilObjTest::class)
46  );
47  }
48 
50  {
51  $this->assertInstanceOf(ilTestCorrectionsGUI::class, $this->testObj);
52  }
53 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: feed.php:28
Class ilTestBaseClass.