3 declare(strict_types=1);
21 require_once(__DIR__ .
"/../../../../libs/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/../../Base.php");
39 public function counter(): C\Counter\Factory
41 return new I\Component\Counter\Factory();
43 public function legacy(
string $content): C\Legacy\Legacy
45 $f =
new I\Component\Legacy\Factory(
new I\
Component\SignalGenerator());
46 return $f->legacy($content);
53 $group_mock = $this->createMock(Group::class);
54 $group_mock->method(
'withNameFrom')->willReturnSelf();
56 $factory_mock = $this->createMock(FieldFactory::class);
57 $factory_mock->method(
'group')->willReturn($group_mock);
64 return new I\Component\Button\Factory();
74 $html = parent::normalizeHTML($html);
76 return str_replace([
'×',
"\t"], [
'',
''], $html);
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...
Provides common functionality for UI tests.
Base class for modal tests.
normalizeHTML(string $html)