3 declare(strict_types=1);
36 protected function setUp(): void
39 $this->
language = $this->getMockBuilder(ilLanguage::class)
40 ->disableOriginalConstructor()
43 $this->group =
new CustomGroup($this->dataFactory, $this->
language);
48 $instance = $this->group->constraint(
static function ():
void {
50 $this->assertInstanceOf(CustomConstraint::class, $instance);
55 $instance = $this->group->transformation(
static function ():
void {
57 $this->assertInstanceOf(CustomTransformation::class, $instance);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testCustomTransformation()