19 declare(strict_types=1);
34 protected function setUp(): void
37 $language = $this->getMockBuilder(\
ILIAS\
Language\Language::class)
38 ->disableOriginalConstructor()
41 $this->group =
new StringGroup($dataFactory, $language);
46 $instance = $this->group->hasMaxLength(42);
47 $this->assertInstanceOf(HasMaxLength::class, $instance);
52 $instance = $this->group->hasMinLength(42);
53 $this->assertInstanceOf(HasMinLength::class, $instance);
58 $instance = $this->group->makeClickable();
59 $this->assertInstanceOf(MakeClickable::class, $instance);
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...
testGreaterThanInstance()