19declare(strict_types=1);
 
   21require_once(
"libs/composer/vendor/autoload.php");
 
   22require_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());
 
Provides common functionality for UI tests.
 
Basic Tests for all Tables.
 
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...