ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
GroupConfigTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 require_once(__DIR__ . "/../../../../../../../vendor/composer/vendor/autoload.php");
24 require_once(__DIR__ . "/../../../Base.php");
25 
27 use ILIAS;
29 
34 {
35  public function getDataFactory(): ILIAS\Data\Factory
36  {
37  return new ILIAS\Data\Factory();
38  }
39 
40  public function testWithStacked(): void
41  {
42  $df = $this->getDataFactory();
43 
44  $gc = new GroupConfig();
45  $gc1 = $gc->withStacked();
46 
47  $this->assertFalse($gc->isStacked());
48  $this->assertTrue($gc1->isStacked());
49  }
50 }
Test on Group Configuration implementation.
Interface Observer Contains several chained tasks and infos about them.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Builds data types.
Definition: Factory.php:35