ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
BasicGroupTest.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
9 
16 
17 require_once('./libs/composer/vendor/autoload.php');
18 
19 class BasicGroupTest extends TestCase
20 {
24  private $group;
25 
26  public function setUp() : void
27  {
28  $this->group = new Group();
29  }
30 
31  public function testParallelInstanceCreated()
32  {
33  $transformation = $this->group->parallel(array(new StringTransformation(), new IntegerTransformation()));
34  $this->assertInstanceOf(Parallel::class, $transformation);
35  }
36 
37  public function testSeriesInstanceCreated()
38  {
39  $transformation = $this->group->series(array(new StringTransformation(), new IntegerTransformation()));
40  $this->assertInstanceOf(Series::class, $transformation);
41  }
42 }