3declare(strict_types=1);
 
   35    protected function setUp(): void
 
   37        $dataFactory = 
new DataFactory();
 
   38        $language = $this->getMockBuilder(ilLanguage::class)
 
   39            ->disableOriginalConstructor()
 
   42        $this->group = 
new StringGroup($dataFactory, $language);
 
   47        $instance = $this->group->hasMaxLength(42);
 
   48        $this->assertInstanceOf(HasMaxLength::class, $instance);
 
   53        $instance = $this->group->hasMinLength(42);
 
   54        $this->assertInstanceOf(HasMinLength::class, $instance);
 
   59        $instance = $this->group->makeClickable();
 
   60        $this->assertInstanceOf(MakeClickable::class, $instance);
 
testGreaterThanInstance()
 
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...