3 declare(strict_types=1);
31 protected function setUp(): void
33 $this->group =
new Group();
38 $instance = $this->group->changeTimezone(
'Europe/Berlin');
39 $this->assertInstanceOf(ChangeTimezone::class, $instance);
44 $this->expectException(\InvalidArgumentException::class);
45 $instance = $this->group->changeTimezone(
'MiddleEarth/Minas_Morgul');
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...
testChangeTimezoneWrongConstruction()