ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
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}
Builds a Color from either hex- or rgb values.
Definition: Factory.php:31
Class assBaseTestCase.