19 declare(strict_types=1);
21 require_once(
"libs/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/../../Base.php");
39 $this->createMock(UploadLimitResolver::class),
40 new C\SignalGenerator(),
51 $this->createMock(ilLanguage::class)
61 new C\SignalGenerator(),
69 new C\SignalGenerator(),
76 return new C\Table\Factory(
77 new C\SignalGenerator(),
83 new C\Table\DataRowBuilder(),
91 protected array
$data = [];
92 public function offsetExists($offset)
94 return isset($this->data[$offset]);
96 public function offsetGet($offset)
98 if(!$this->offsetExists($offset)) {
101 return $this->data[$offset];
103 public function offsetSet($offset, $value)
105 $this->data[$offset] = $value;
107 public function offsetUnset($offset)
109 unset($this->data[$offset]);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ChatMainBarProvider .
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Provides common functionality for UI tests.
This is how the factory for UI elements looks.
Basic Tests for all Tables.
getViewControlContainerFactory()