5 require_once(
"libs/composer/vendor/autoload.php");
6 require_once(__DIR__ .
"/../../Base.php");
8 use \ILIAS\UI\Implementation\Component\Tree\Tree;
24 $this->expectException(\ArgumentCountError::class);
30 $this->expectException(\TypeError::class);
37 $recursion =
new class implements \ILIAS\UI\Component\Tree\TreeRecursion {
38 public function getChildren($record,
$environment = null) : array
43 public function build(
44 \ILIAS\UI\Component\Tree\Node\Factory
$factory,
52 $this->assertInstanceOf(
53 "ILIAS\\UI\\Component\\Tree\\Tree",
76 $env = [
'key1' =>
'val1',
'key2' => 2];
77 $this->assertInstanceOf(
78 "ILIAS\\UI\\Component\\Tree\\TreeRecursion",
88 $env = [
'key1' =>
'val1',
'key2' => 2];
91 $tree->withEnvironment($env)->getEnvironment()
100 $data = [
'entry1',
'entry2'];
103 $tree->withData(
$data)->getData()
113 $tree->getHighlightOnNodeClick()
116 $tree->withHighlightOnNodeClick(
true)->getHighlightOnNodeClick()
testWithEnvironment($tree)
testConstruction
testWithHighlightOnNodeClick($tree)
testConstruction
This describes a Tree Node.
testWrongTypeConstruction()
Dummy-implementation for testing.
Tests for the (Base-)Tree.
testGetRecursion($tree)
testConstruction
Provides common functionality for UI tests.
testWithData($tree)
testConstruction
testGetLabel($tree)
testConstruction