Definition at line 42 of file FactoryTest.php.
◆ setUp()
ILIAS\Tests\Refinery\FactoryTest::setUp |
( |
| ) |
|
|
protected |
Definition at line 46 of file FactoryTest.php.
48 $language = $this->getMockBuilder(\
ILIAS\Language\Language::class)
49 ->disableOriginalConstructor()
Interface Observer Contains several chained tasks and infos about them.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
◆ testByTryingInGroup()
ILIAS\Tests\Refinery\FactoryTest::testByTryingInGroup |
( |
| ) |
|
Definition at line 135 of file FactoryTest.php.
137 $instance = $this->basicFactory->byTrying([
138 $this->basicFactory->numeric(),
139 $this->basicFactory->string()
141 $this->assertInstanceOf(ByTrying::class, $instance);
◆ testCreateContainerGroup()
ILIAS\Tests\Refinery\FactoryTest::testCreateContainerGroup |
( |
| ) |
|
Definition at line 111 of file FactoryTest.php.
113 $group = $this->basicFactory->container();
115 $this->assertInstanceOf(ContainerGroup::class, $group);
◆ testCreateCustomGroup()
ILIAS\Tests\Refinery\FactoryTest::testCreateCustomGroup |
( |
| ) |
|
Definition at line 104 of file FactoryTest.php.
106 $group = $this->basicFactory->custom();
108 $this->assertInstanceOf(CustomGroup::class, $group);
◆ testCreateDateTimeGroup()
ILIAS\Tests\Refinery\FactoryTest::testCreateDateTimeGroup |
( |
| ) |
|
Definition at line 118 of file FactoryTest.php.
120 $group = $this->basicFactory->dateTime();
121 $this->assertInstanceOf(DateTimeGroup::class, $group);
◆ testCreateEncodeGroup()
ILIAS\Tests\Refinery\FactoryTest::testCreateEncodeGroup |
( |
| ) |
|
Definition at line 130 of file FactoryTest.php.
132 $this->assertInstanceOf(EncodeGroup::class, $this->basicFactory->encode());
◆ testCreateInGroup()
ILIAS\Tests\Refinery\FactoryTest::testCreateInGroup |
( |
| ) |
|
Definition at line 62 of file FactoryTest.php.
64 $group = $this->basicFactory->in();
66 $this->assertInstanceOf(InGroup::class, $group);
◆ testCreateIntegerGroup()
ILIAS\Tests\Refinery\FactoryTest::testCreateIntegerGroup |
( |
| ) |
|
Definition at line 69 of file FactoryTest.php.
71 $group = $this->basicFactory->int();
73 $this->assertInstanceOf(IntegerGroup::class, $group);
◆ testCreateLogicalGroup()
ILIAS\Tests\Refinery\FactoryTest::testCreateLogicalGroup |
( |
| ) |
|
Definition at line 90 of file FactoryTest.php.
92 $group = $this->basicFactory->logical();
94 $this->assertInstanceOf(LogicalGroup::class, $group);
◆ testCreateNumericGroup()
ILIAS\Tests\Refinery\FactoryTest::testCreateNumericGroup |
( |
| ) |
|
Definition at line 83 of file FactoryTest.php.
85 $group = $this->basicFactory->numeric();
87 $this->assertInstanceOf(NumericGroup::class, $group);
◆ testCreatePasswordGroup()
ILIAS\Tests\Refinery\FactoryTest::testCreatePasswordGroup |
( |
| ) |
|
Definition at line 97 of file FactoryTest.php.
99 $group = $this->basicFactory->password();
101 $this->assertInstanceOf(PasswordGroup::class, $group);
◆ testCreateStringGroup()
ILIAS\Tests\Refinery\FactoryTest::testCreateStringGroup |
( |
| ) |
|
Definition at line 76 of file FactoryTest.php.
78 $group = $this->basicFactory->string();
80 $this->assertInstanceOf(StringGroup::class, $group);
◆ testCreateToGroup()
ILIAS\Tests\Refinery\FactoryTest::testCreateToGroup |
( |
| ) |
|
Definition at line 55 of file FactoryTest.php.
57 $group = $this->basicFactory->to();
59 $this->assertInstanceOf(ToGroup::class, $group);
◆ testCreateUriGroup()
ILIAS\Tests\Refinery\FactoryTest::testCreateUriGroup |
( |
| ) |
|
Definition at line 124 of file FactoryTest.php.
126 $group = $this->basicFactory->uri();
127 $this->assertInstanceOf(URIGroup::class, $group);
◆ testExecutable()
ILIAS\Tests\Refinery\FactoryTest::testExecutable |
( |
| ) |
|
Definition at line 150 of file FactoryTest.php.
152 $instance = $this->basicFactory->executable();
153 $this->assertInstanceOf(IsExecutableTransformation::class, $instance);
◆ testIdentity()
ILIAS\Tests\Refinery\FactoryTest::testIdentity |
( |
| ) |
|
Definition at line 144 of file FactoryTest.php.
146 $instance = $this->basicFactory->identity();
147 $this->assertInstanceOf(IdentityTransformation::class, $instance);
◆ $basicFactory
Refinery ILIAS\Tests\Refinery\FactoryTest::$basicFactory |
|
private |
The documentation for this class was generated from the following file: