ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
GroupTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 use ILIAS\Refinery\Container\Group as ContainerGroup;
27 
28 class GroupTest extends TestCase
29 {
30  private ContainerGroup $group;
32 
33  protected function setUp(): void
34  {
35  $this->dataFactory = new DataFactory();
36  $this->group = new ContainerGroup($this->dataFactory);
37  }
38 
39  public function testCustomConstraint(): void
40  {
41  $instance = $this->group->addLabels(['hello', 'world']);
42  $this->assertInstanceOf(AddLabels::class, $instance);
43  }
44 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...