ILIAS  trunk Revision v11.0_alpha-1861-g09f3d197f78
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilAssLacLegendGUITest.php
Go to the documentation of this file.
1 <?php
2 
20 
31 {
32  protected $backupGlobals = false;
33 
35 
36  protected function setUp(): void
37  {
38  parent::setUp();
39 
40  $ilGlobalTemplateInterface = $this->createMock(ilGlobalTemplateInterface::class);
41  $ilLanguage = $this->createMock(ilLanguage::class);
42  $factory = $this->createMock(Factory::class);
43 
44  $this->object = new ilAssLacLegendGUI($ilGlobalTemplateInterface, $ilLanguage, $factory);
45  }
46 
47  public function testConstruct(): void
48  {
49  $this->assertInstanceOf(ilAssLacLegendGUI::class, $this->object);
50  }
51 }
Class assBaseTestCase.