Definition at line 26 of file MapValuesTest.php.
◆ setUp()
Definition at line 43 of file MapValuesTest.php.
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));
Interface Observer Contains several chained tasks and infos about them.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
◆ testTransform()
MapValuesTest::testTransform |
( |
| ) |
|
Definition at line 52 of file MapValuesTest.php.
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));
◆ testTransformFails()
MapValuesTest::testTransformFails |
( |
| ) |
|
Definition at line 59 of file MapValuesTest.php.
References null.
61 $this->expectException(InvalidArgumentException::class);
62 $this->map_values->transform(
null);
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
◆ $f
Refinery MapValuesTest::$f |
|
private |
◆ $map_values
◆ $result_array
array MapValuesTest::$result_array |
|
private |
◆ $test_array
array MapValuesTest::$test_array |
|
private |
The documentation for this class was generated from the following file: