ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ShowOnScreenMessageTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
29 
30 require_once __DIR__ . '/../ContainerMock.php';
31 
32 class ShowOnScreenMessageTest extends TestCase
33 {
34  use ContainerMock;
35 
36  public function testConstruct(): void
37  {
38  $this->assertInstanceOf(ShowOnScreenMessage::class, new ShowOnScreenMessage($this->mock(PageFragment::class), 'foo', 'bar', false));
39  }
40 
41  public function testRender(): void
42  {
43  $template = $this->mock(ilGlobalTemplateInterface::class);
44  $template->expects(self::once())->method('setOnScreenMessage')->with('foo', 'bar', true);
45  $renderer = $this->mock(Renderer::class);
46  $page = $this->mockMethod(PageFragment::class, 'render', [$template, $renderer], 'rendered');
47 
48  $instance = new ShowOnScreenMessage($page, 'foo', 'bar', true);
49  $this->assertSame('rendered', $instance->render($template, $renderer));
50  }
51 }
$renderer