19declare(strict_types=1);
21require_once(
"vendor/composer/vendor/autoload.php");
22require_once(__DIR__ .
"/../../Base.php");
38 return new FieldFactory(
40 $this->createMock(UploadLimitResolver::class),
58 return new ViewControl\Factory(
69 return new ViewControlContainer\Factory(
77 return new C\Table\Factory(
85 new C\
Table\DataRowBuilder(),
86 new C\
Table\OrderingRowBuilder()
92 return new class () implements ArrayAccess {
93 protected array
$data = [];
94 public function offsetExists(mixed $offset):
bool
96 return isset($this->data[$offset]);
98 public function offsetGet(mixed $offset): mixed
100 if(!$this->offsetExists($offset)) {
103 return $this->data[$offset];
105 public function offsetSet(mixed $offset, mixed $value):
void
107 $this->data[$offset] = $value;
109 public function offsetUnset(mixed $offset):
void
111 unset($this->data[$offset]);
Provides common functionality for UI tests.
Basic Tests for all Tables.
getViewControlContainerFactory()
Interface Observer \BackgroundTasks Contains several chained tasks and infos about them.