19 declare(strict_types=1);
21 require_once(
"libs/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/../../Base.php");
34 $title =
'some title';
35 $table =
new class ($title) extends
I\Table\Table {
37 $this->assertEquals($title, $table->getTitle());
39 $title =
'some other title';
40 $table = $table->withTitle($title);
41 $this->assertEquals($title, $table->getTitle());
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...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Provides common functionality for UI tests.
Basic Tests for all Tables.