ILIAS  trunk Revision v11.0_alpha-1744-gb0451eebef4
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilObjTestVerificationGUITest.php
Go to the documentation of this file.
1 <?php
2 
20 {
22 
23  protected function setUp(): void
24  {
25  parent::setUp();
26 
27  $this->addGlobal_ilTabs();
28  $this->addGlobal_ilLocator();
29  ;
30  $this->addGlobal_ilAccess();
31  $this->addGlobal_ilToolbar();
32  $this->addGlobal_ilRbacAdmin();
33  $this->addGlobal_rbacsystem();
34  $this->addGlobal_rbacreview();
35  $this->addGlobal_ilObjDataCache();
36  $this->addGlobal_ilSetting();
37  $this->addGlobal_filesystem();
38  }
39 
40  public function testConstruct(): void
41  {
42  $this->testObj = new ilObjTestVerificationGUI(
43  0,
44  1,
45  0
46  );
47  $this->assertInstanceOf(ilObjTestVerificationGUI::class, $this->testObj);
48  }
49 
50  public function testGetType(): void
51  {
52  $this->testObj = new ilObjTestVerificationGUI(
53  0,
54  1,
55  0
56  );
57  $this->assertEquals('tstv', $this->testObj->getType());
58  }
59 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
GUI class for test verification.