ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
EchoingTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 
28 class EchoingTest extends TestCase
29 {
30  protected Echoing $retriever;
31 
32  public function setUp(): void
33  {
34  $this->retriever = new Echoing();
35  }
36 
37  public function testGetHelpTextEchoes(): void
38  {
39  $result = $this->retriever->getHelpText(
41  new Topic("foo"),
42  new Topic("bar")
43  );
44 
45  $this->assertEquals(["tooltip: foo", "tooltip: bar"], $result);
46  }
47 }
This is just a class that marks a string as a help topic.
Definition: Topic.php:26
This HelpTextRetriever simply echo the purpose and the topics for debugging and development purpose...
Definition: Echoing.php:30
A purpose describes the intended use for a certain help text.
Definition: Purpose.php:46