Definition at line 30 of file BasicGroupTest.php.
◆ setUp()
ILIAS\Tests\Refinery\In\BasicGroupTest::setUp |
( |
| ) |
|
|
protected |
Definition at line 34 of file BasicGroupTest.php.
34 : void
35 {
36 $this->group = new InGroup();
37 }
◆ testParallelInstanceCreated()
ILIAS\Tests\Refinery\In\BasicGroupTest::testParallelInstanceCreated |
( |
| ) |
|
Definition at line 39 of file BasicGroupTest.php.
39 : void
40 {
41 $transformation = $this->group->parallel([new StringTransformation(), new IntegerTransformation()]);
42 $this->assertInstanceOf(Parallel::class, $transformation);
43 }
◆ testSeriesInstanceCreated()
ILIAS\Tests\Refinery\In\BasicGroupTest::testSeriesInstanceCreated |
( |
| ) |
|
Definition at line 45 of file BasicGroupTest.php.
45 : void
46 {
47 $transformation = $this->group->series([new StringTransformation(), new IntegerTransformation()]);
48 $this->assertInstanceOf(Series::class, $transformation);
49 }
◆ $group
InGroup ILIAS\Tests\Refinery\In\BasicGroupTest::$group |
|
private |
The documentation for this class was generated from the following file: