ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
LocatorGUITest.php
Go to the documentation of this file.
1<?php
2
19use PHPUnit\Framework\TestCase;
20
24class LocatorGUITest extends TestCase
25{
26 protected function setUp(): void
27 {
28 parent::setUp();
29 }
30
31 protected function tearDown(): void
32 {
33 }
34
35 public function testValue(): void
36 {
37 $loc = new ilLocatorGUI();
38 $loc->setOffline(true);
39 $this->assertEquals(
40 true,
41 $loc->getOffline()
42 );
43 }
44}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...