ILIAS  trunk Revision v11.0_alpha-2638-g80c1d007f79
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  $this->addGlobal_http();
39  }
40 
41  public function testConstruct(): void
42  {
43  $this->testObj = new ilObjTestVerificationGUI(
44  0,
45  1,
46  0
47  );
48  $this->assertInstanceOf(ilObjTestVerificationGUI::class, $this->testObj);
49  }
50 
51  public function testGetType(): void
52  {
53  $this->testObj = new ilObjTestVerificationGUI(
54  0,
55  1,
56  0
57  );
58  $this->assertEquals('tstv', $this->testObj->getType());
59  }
60 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addGlobal_filesystem()
addGlobal_rbacsystem()
addGlobal_ilRbacAdmin()
addGlobal_rbacreview()
GUI class for test verification.
addGlobal_ilObjDataCache()