19 declare(strict_types=1);
38 return $this->
getAmdForm(
'#', $available_records, $type);
47 $language = $this->createMock(ilLanguage::class);
54 $language = $this->createMock(ilLanguage::class);
55 $filter_factory = $this->createMock(
Component\Input\Container\
Filter\Factory::class);
58 $upload_limit_resolver = $this->createMock(
Component\Input\UploadLimitResolver::class);
61 $factory =
new class (
64 $view_control_factory,
66 $upload_limit_resolver,
71 protected $filter_factory,
72 protected $view_control_factory,
73 protected $control_factory,
74 protected $upload_limit_resolver,
79 public function input(): Component\Input\Factory
81 $signal_generator =
new Component\SignalGenerator();
84 $field_factory =
new Component\Input\Field\Factory(
85 $this->upload_limit_resolver,
92 $form_factory =
new Component\Input\Container\Form\Factory(
96 $container_factory =
new Component\Input\Container\Factory(
98 $this->filter_factory,
99 $this->view_control_factory
102 return new Component\Input\Factory(
106 $this->control_factory,
115 $amdr1 = $this->createMock(ilAdvancedMDRecord::class);
117 ->method(
'getRecordId')
121 ->willReturn(
'title 1');
123 $amdr2 = $this->createMock(ilAdvancedMDRecord::class);
125 ->method(
'getRecordId')
129 ->willReturn(
'title 2');
131 $type = $this->createMock(ilOrgUnitType::class);
133 ->method(
'getAssignedAdvancedMDRecordIds')
137 $this->getRefinery(),
138 $this->getUIFactory(),
139 $this->createMock(ilLanguage::class)
142 $form = $gui->mockGetAmdForm([$amdr1, $amdr2], $type);
143 $this->assertInstanceOf(StandardForm::class, $form);
145 $section = current($form->getInputs());
146 $this->assertInstanceOf(Section::class, $section);
148 $inputs = $section->getInputs();
149 $this->assertEquals(1, count(
$inputs));
__construct(protected ILIAS\Refinery\Factory $refinery, protected ILIAS\UI\Factory $ui_factory, protected ilLanguage $lng,)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Interface Observer Contains several chained tasks and infos about them.
mockGetAmdForm(array $available_records, ilOrgUnitType $type)
getAmdForm(string $action, array $available_records, ilOrgUnitType $type)
DataFactory $data_factory
testOrgUnitTypeGuiAMDForm()
language()
description: > Example for rendring a language glyph.