ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
BasicGroupTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 use ILIAS\Refinery\In\Group as InGroup;
29 
30 class BasicGroupTest extends TestCase
31 {
32  private InGroup $group;
33 
34  protected function setUp(): void
35  {
36  $this->group = new InGroup();
37  }
38 
39  public function testParallelInstanceCreated(): void
40  {
41  $transformation = $this->group->parallel([new StringTransformation(), new IntegerTransformation()]);
42  $this->assertInstanceOf(Parallel::class, $transformation);
43  }
44 
45  public function testSeriesInstanceCreated(): void
46  {
47  $transformation = $this->group->series([new StringTransformation(), new IntegerTransformation()]);
48  $this->assertInstanceOf(Series::class, $transformation);
49  }
50 }