Definition at line 15 of file FactoryTest.php.
◆ setUp()
ILIAS\Tests\Refinery\FactoryTest::setUp |
( |
| ) |
|
Definition at line 22 of file FactoryTest.php.
24 $language = $this->getMockBuilder(
'\ilLanguage')
25 ->disableOriginalConstructor()
28 $this->basicFactory =
new Factory(
new \
ILIAS\Data\Factory(), $language);
Class ChatMainBarProvider .
◆ testCreateContainerGroup()
ILIAS\Tests\Refinery\FactoryTest::testCreateContainerGroup |
( |
| ) |
|
Definition at line 87 of file FactoryTest.php.
89 $group = $this->basicFactory->container();
91 $this->assertInstanceOf(\
ILIAS\
Refinery\Container\Group::class, $group);
Class ChatMainBarProvider .
◆ testCreateCustomGroup()
ILIAS\Tests\Refinery\FactoryTest::testCreateCustomGroup |
( |
| ) |
|
Definition at line 80 of file FactoryTest.php.
82 $group = $this->basicFactory->custom();
84 $this->assertInstanceOf(\
ILIAS\
Refinery\Custom\Group::class, $group);
Class ChatMainBarProvider .
◆ testCreateDateTimeGroup()
ILIAS\Tests\Refinery\FactoryTest::testCreateDateTimeGroup |
( |
| ) |
|
Definition at line 94 of file FactoryTest.php.
96 $group = $this->basicFactory->dateTime();
Class ChatMainBarProvider .
◆ testCreateInGroup()
ILIAS\Tests\Refinery\FactoryTest::testCreateInGroup |
( |
| ) |
|
Definition at line 38 of file FactoryTest.php.
40 $group = $this->basicFactory->in();
42 $this->assertInstanceOf(\
ILIAS\
Refinery\In\Group::class, $group);
Class ChatMainBarProvider .
◆ testCreateIntegerGroup()
ILIAS\Tests\Refinery\FactoryTest::testCreateIntegerGroup |
( |
| ) |
|
Definition at line 45 of file FactoryTest.php.
47 $group = $this->basicFactory->int();
49 $this->assertInstanceOf(\
ILIAS\
Refinery\Integer\Group::class, $group);
Class ChatMainBarProvider .
◆ testCreateLogicalGroup()
ILIAS\Tests\Refinery\FactoryTest::testCreateLogicalGroup |
( |
| ) |
|
Definition at line 66 of file FactoryTest.php.
68 $group = $this->basicFactory->logical();
70 $this->assertInstanceOf(\
ILIAS\
Refinery\Logical\Group::class, $group);
Class ChatMainBarProvider .
◆ testCreateNumericGroup()
ILIAS\Tests\Refinery\FactoryTest::testCreateNumericGroup |
( |
| ) |
|
Definition at line 59 of file FactoryTest.php.
61 $group = $this->basicFactory->numeric();
63 $this->assertInstanceOf(\
ILIAS\
Refinery\Numeric\Group::class, $group);
Class ChatMainBarProvider .
◆ testCreatePasswordGroup()
ILIAS\Tests\Refinery\FactoryTest::testCreatePasswordGroup |
( |
| ) |
|
Definition at line 73 of file FactoryTest.php.
75 $group = $this->basicFactory->password();
77 $this->assertInstanceOf(\
ILIAS\
Refinery\Password\Group::class, $group);
Class ChatMainBarProvider .
◆ testCreateStringGroup()
ILIAS\Tests\Refinery\FactoryTest::testCreateStringGroup |
( |
| ) |
|
Definition at line 52 of file FactoryTest.php.
54 $group = $this->basicFactory->string();
56 $this->assertInstanceOf(\
ILIAS\
Refinery\String\Group::class, $group);
Class ChatMainBarProvider .
◆ testCreateToGroup()
ILIAS\Tests\Refinery\FactoryTest::testCreateToGroup |
( |
| ) |
|
Definition at line 31 of file FactoryTest.php.
33 $group = $this->basicFactory->to();
35 $this->assertInstanceOf(\
ILIAS\
Refinery\To\Group::class, $group);
Class ChatMainBarProvider .
◆ testCreateUriGrouo()
ILIAS\Tests\Refinery\FactoryTest::testCreateUriGrouo |
( |
| ) |
|
Definition at line 100 of file FactoryTest.php.
102 $group = $this->basicFactory->uri();
103 $this->assertInstanceOf(\
ILIAS\
Refinery\URI\Group::class, $group);
Class ChatMainBarProvider .
◆ $basicFactory
ILIAS\Tests\Refinery\FactoryTest::$basicFactory |
|
private |
The documentation for this class was generated from the following file: