ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ChainingTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 
29 class ChainingTest extends TestCase
30 {
33 
34  public function setUp(): void
35  {
36  $this->retriever_a = new class () implements HelpTextRetriever {
37  public function getHelpText(Purpose $purpose, Topic ...$topics): array
38  {
39  return ["a"];
40  }
41  };
42 
43  $this->retriever_b = new class () implements HelpTextRetriever {
44  public function getHelpText(Purpose $purpose, Topic ...$topics): array
45  {
46  return ["b"];
47  }
48  };
49  }
50 
51  public function testGetHelpTextChaining(): void
52  {
53  $retriever = new Chaining($this->retriever_a, $this->retriever_b);
54 
55  $result = $retriever->getHelpText(new Purpose(Purpose::PURPOSE_TOOLTIP));
56 
57  $this->assertEquals(["a", "b"], $result);
58  }
59 
60  public function testGetHelpTextRemovesDuplicates(): void
61  {
62  $retriever = new Chaining($this->retriever_a, $this->retriever_a);
63 
64  $result = $retriever->getHelpText(new Purpose(Purpose::PURPOSE_TOOLTIP));
65 
66  $this->assertEquals(["a"], $result);
67  }
68 }
This is just a class that marks a string as a help topic.
Definition: Topic.php:26
A purpose describes the intended use for a certain help text.
Definition: Purpose.php:46
This describes a facility that the UI framework can use to retrieve some help text.
This HelpTextRetriever merges results from various other retrievers (and removes duplicates).
Definition: Chaining.php:30