3 declare(strict_types=1);
21 require_once(__DIR__ .
"/../../../../libs/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/../../Base.php");
34 return new I\Component\Divider\Factory();
41 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\Divider\\Horizontal",
$f->horizontal());
47 $c =
$f->horizontal()->withLabel(
"label");
49 $this->assertEquals(
"label",
$c->getLabel());
57 $c =
$f->horizontal();
59 $html = trim($r->render(
$c));
61 $expected_html =
"<hr/>";
71 $c =
$f->horizontal()->withLabel(
"label");
73 $html = trim($r->render(
$c));
74 $expected_html =
'<hr class="il-divider-with-label" /><h4 class="il-divider">label</h4>';
76 $this->
assertHTMLEquals(
"<div>" . $expected_html .
"</div>",
"<div>" . $html .
"</div>");
86 $html = trim($r->render(
$c));
87 $expected_html =
'<span class="glyphicon il-divider-vertical" aria-hidden="true"></span>';
89 $this->
assertHTMLEquals(
"<div>" . $expected_html .
"</div>",
"<div>" . $html .
"</div>");
getDefaultRenderer(JavaScriptBinding $js_binding=null, array $with_stub_renderings=[])
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
test_render_horizontal_empty()
assertHTMLEquals(string $expected_html_as_string, string $html_as_string)
test_implements_factory_interface()
Provides common functionality for UI tests.
test_render_horizontal_with_label()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...