5 require_once(
"libs/composer/vendor/autoload.php");
6 require_once(__DIR__ .
"/../../../Base.php");
8 use \ILIAS\UI\Component as
C;
9 use \ILIAS\UI\Implementation\Component as
I;
10 use \ILIAS\UI\Implementation\Component\MainControls\Slate\Slate;
11 use \ILIAS\UI\Implementation\Component\MainControls\Slate\Combined;
12 use \ILIAS\UI\Component\Signal;
37 $this->button_factory =
new I\Button\Factory($this->sig_gen);
38 $this->icon_factory =
new I\Symbol\Icon\Factory();
44 $icon = $this->icon_factory->custom(
'',
'');
47 $this->assertInstanceOf(
48 "ILIAS\\UI\\Component\\MainControls\\Slate\\Slate",
51 $this->assertEquals(
$name, $slate->getName());
52 $this->assertEquals($icon, $slate->getSymbol());
53 $this->assertFalse($slate->getEngaged());
75 $this->assertFalse(
"This should not happen");
86 $this->assertFalse(
"This should not happen");
88 $this->assertTrue(
true);
102 foreach ($signals as $signal) {
103 $this->assertInstanceOf(Signal::class, $signal);
115 array_unique($signals)
getReplaceSignal()
Signal to replace the contents of the slate.
withMappedSubNodes(callable $f)
testWithAriaRoleIncorrect(Slate $slate)
testConstruction
getEngaged()
Should the slate be rendered as engaged?
testDifferentSignals(array $signals)
testSignals
withEngaged(bool $state)
Configures the slate to be rendered as engaged (or not).
Provides common functionality for UI tests.
testWithAriaRole(Slate $slate)
testConstruction
getAriaRole()
Get the ARIA role on the slate.
getEngageSignal()
Signal that engages the slate when triggered.
testSignals(Slate $slate)
testConstruction
testWithEngaged(Slate $slate)
testConstruction
withAriaRole(string $aria_role)
Get a slate like this, but with an additional ARIA role.
getToggleSignal()
Signal that toggles the slate when triggered.