19 declare(strict_types=1);
43 protected function setUp(): void
46 $language = $this->createMock(
ILIAS\Language\Language::class);
48 $this->f =
new Refinery($dataFactory, $language);
49 $this->map_values = $this->f->container()->mapValues($this->f->custom()->transformation(fn($v) => $v * 2));
54 $result = $this->map_values->transform($this->test_array);
55 $this->assertEquals($this->result_array, $result);
56 $this->assertEquals([
"A",
"B",
"C"], array_keys($result));
61 $this->expectException(InvalidArgumentException::class);
62 $this->map_values->transform(
null);
Interface Observer Contains several chained tasks and infos about them.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Transformation $map_values