ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
DefaultRendererFactoryTest.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
25 
27 {
28  public function __construct()
29  {
30  }
31 
32  public function _getRendererNameFor(\ILIAS\UI\Component\Component $component): string
33  {
34  return $this->getRendererNameFor($component);
35  }
36 }
37 
38 class DefaultRendererFactoryTest extends TestCase
39 {
40  public function test_getRendererNameFor(): void
41  {
43 
44  $renderer_class = $f->_getRendererNameFor(new Glyph("up", "up"));
45  $expected = Renderer::class;
46  $this->assertEquals($expected, $renderer_class);
47  }
48 }
Class Factory.
_getRendererNameFor(\ILIAS\UI\Component\Component $component)
Class ChatMainBarProvider .
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getRendererNameFor(Component $component)
Get the name for the renderer of Component class.