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 
29 
30 class GroupTest extends TestCase
31 {
33 
34  protected function setUp(): void
35  {
36  $dataFactory = new DataFactory();
37  $language = $this->getMockBuilder(\ILIAS\Language\Language::class)
38  ->disableOriginalConstructor()
39  ->getMock();
40 
41  $this->group = new StringGroup($dataFactory, $language);
42  }
43 
44  public function testGreaterThanInstance(): void
45  {
46  $instance = $this->group->hasMaxLength(42);
47  $this->assertInstanceOf(HasMaxLength::class, $instance);
48  }
49 
50  public function testLowerThanInstance(): void
51  {
52  $instance = $this->group->hasMinLength(42);
53  $this->assertInstanceOf(HasMinLength::class, $instance);
54  }
55 
56  public function testMakeClickable(): void
57  {
58  $instance = $this->group->makeClickable();
59  $this->assertInstanceOf(MakeClickable::class, $instance);
60  }
61 }
Interface Observer Contains several chained tasks and infos about them.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...