ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ILIAS\Tests\Refinery\In\BasicGroupTest Class Reference
+ Inheritance diagram for ILIAS\Tests\Refinery\In\BasicGroupTest:
+ Collaboration diagram for ILIAS\Tests\Refinery\In\BasicGroupTest:

Public Member Functions

 testParallelInstanceCreated ()
 
 testSeriesInstanceCreated ()
 

Protected Member Functions

 setUp ()
 

Private Attributes

InGroup $group
 

Detailed Description

Definition at line 30 of file BasicGroupTest.php.

Member Function Documentation

◆ 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 }

Field Documentation

◆ $group

InGroup ILIAS\Tests\Refinery\In\BasicGroupTest::$group
private

Definition at line 32 of file BasicGroupTest.php.


The documentation for this class was generated from the following file: