ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
StructureSetTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 
28 class StructureSetTest extends TestCase
29 {
30  protected function getRoot(): StructureElementInterface
31  {
32  return new class () extends NullStructureElement {
33  public function getMDID(): NoID
34  {
35  return NoID::ROOT;
36  }
37 
38  public function isRoot(): bool
39  {
40  return true;
41  }
42  };
43  }
44 
45  public function testGetRoot(): void
46  {
47  $root = $this->getRoot();
48  $set = new StructureSet($root);
49 
50  $this->assertSame($root, $set->getRoot());
51  }
52 }