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)
57 return new ViewControl\Factory(
61 new C\SignalGenerator(),
69 new C\SignalGenerator(),
76 return new C\Table\Factory(
77 new C\SignalGenerator(),
83 new C\Table\DataRowBuilder(),
85 new C\Table\OrderingRowBuilder(),
92 protected array
$data = [];
93 public function offsetExists(mixed $offset):
bool 95 return isset($this->data[$offset]);
97 public function offsetGet(mixed $offset): mixed
99 if (!$this->offsetExists($offset)) {
102 return $this->data[$offset];
104 public function offsetSet(mixed $offset, mixed $value):
void 106 $this->data[$offset] = $value;
108 public function offsetUnset(mixed $offset):
void 110 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.
Basic Tests for all Tables.
getViewControlContainerFactory()