ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
FormFactoryTest.php
Go to the documentation of this file.
1 <?php
2 
3 require_once 'tests/UI/AbstractFactoryTest.php';
4 
5 use \ILIAS\UI\Component\Input\Container\Form;
7 use \ILIAS\Data;
9 
11 {
13  "standard" => array(
14  "context" => false,
15  ),
16  );
17  public $factory_title = 'ILIAS\\UI\\Component\\Input\\Container\\Form\\Factory';
18 
19 
20  final public function buildFactory()
21  {
22  $df = new Data\Factory();
23  $language = $this->createMock(\ilLanguage::class);
24  return new \ILIAS\UI\Implementation\Component\Input\Container\Form\Factory(
25  new \ILIAS\UI\Implementation\Component\Input\Field\Factory(
26  new SignalGenerator(),
27  $df,
28  new \ILIAS\Refinery\Factory($df, $language),
29  $language
30  )
31  );
32  }
33 
34 
36  {
37  $f = $this->buildFactory();
38 
39  $form = $f->standard("#", []);
40  $this->assertInstanceOf(Form\Form::class, $form);
41  $this->assertInstanceOf(Form\Standard::class, $form);
42  }
43 }
Class Factory.
Class ChatMainBarProvider .
Defines tests every SHOULD pass UI-factory.
Builds data types.
Definition: Factory.php:19