Definition at line 34 of file GroupTest.php.
◆ setUp()
ILIAS\Tests\Refinery\KindlyTo\GroupTest::setUp |
( |
| ) |
|
|
protected |
Definition at line 38 of file GroupTest.php.
40 $this->basicGroup =
new KindlyToGroup(
new \
ILIAS\
Data\Factory());
Interface Observer Contains several chained tasks and infos about them.
◆ testIsBooleanTransformationInstance()
ILIAS\Tests\Refinery\KindlyTo\GroupTest::testIsBooleanTransformationInstance |
( |
| ) |
|
Definition at line 49 of file GroupTest.php.
51 $transformation = $this->basicGroup->bool();
52 $this->assertInstanceOf(BooleanTransformation::class, $transformation);
◆ testIsDateTimeTransformationInterface()
ILIAS\Tests\Refinery\KindlyTo\GroupTest::testIsDateTimeTransformationInterface |
( |
| ) |
|
Definition at line 55 of file GroupTest.php.
57 $transformation = $this->basicGroup->dateTime();
58 $this->assertInstanceOf(DateTimeTransformation::class, $transformation);
◆ testIsFloatTransformationInterface()
ILIAS\Tests\Refinery\KindlyTo\GroupTest::testIsFloatTransformationInterface |
( |
| ) |
|
Definition at line 67 of file GroupTest.php.
69 $transformation = $this->basicGroup->float();
70 $this->assertInstanceOf(FloatTransformation::class, $transformation);
◆ testIsIntegerTransformationInterface()
ILIAS\Tests\Refinery\KindlyTo\GroupTest::testIsIntegerTransformationInterface |
( |
| ) |
|
Definition at line 61 of file GroupTest.php.
63 $transformation = $this->basicGroup->int();
64 $this->assertInstanceOf(IntegerTransformation::class, $transformation);
◆ testIsRecordTransformationInterface()
ILIAS\Tests\Refinery\KindlyTo\GroupTest::testIsRecordTransformationInterface |
( |
| ) |
|
Definition at line 73 of file GroupTest.php.
75 $transformation = $this->basicGroup->recordOf([
'tostring' =>
new StringTransformation()]);
76 $this->assertInstanceOf(RecordTransformation::class, $transformation);
◆ testIsStringTransformationInstance()
ILIAS\Tests\Refinery\KindlyTo\GroupTest::testIsStringTransformationInstance |
( |
| ) |
|
Definition at line 43 of file GroupTest.php.
45 $transformation = $this->basicGroup->string();
46 $this->assertInstanceOf(StringTransformation::class, $transformation);
◆ testIsTupleTransformationInterface()
ILIAS\Tests\Refinery\KindlyTo\GroupTest::testIsTupleTransformationInterface |
( |
| ) |
|
Definition at line 79 of file GroupTest.php.
81 $transformation = $this->basicGroup->tupleOf([
new StringTransformation()]);
82 $this->assertInstanceOf(TupleTransformation::class, $transformation);
◆ testNewDictionaryTransformation()
ILIAS\Tests\Refinery\KindlyTo\GroupTest::testNewDictionaryTransformation |
( |
| ) |
|
Definition at line 85 of file GroupTest.php.
87 $transformation = $this->basicGroup->dictOf(
new StringTransformation());
88 $this->assertInstanceOf(DictionaryTransformation::class, $transformation);
◆ $basicGroup
KindlyToGroup ILIAS\Tests\Refinery\KindlyTo\GroupTest::$basicGroup |
|
private |
The documentation for this class was generated from the following file: