ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
IdentityTransformationTest.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
21 namespace ILIAS\Tests\Refinery;
22 
27 
29 {
30  public function testTransform(): void
31  {
32  $value = 'hejaaa';
33 
34  $actual = (new IdentityTransformation())->transform($value);
35 
36  $this->assertEquals($value, $actual);
37  }
38 
39  public function testApplyToOk(): void
40  {
41  $value = ['im in an array'];
42  $result = (new IdentityTransformation())->applyTo(new Ok($value));
43  $this->assertInstanceOf(Ok::class, $result);
44  $this->assertEquals($value, $result->value());
45  }
46 
47  public function testApplyToError(): void
48  {
49  $error = new Error('some error');
50  $result = (new IdentityTransformation())->applyTo($error);
51  $this->assertEquals($error, $result);
52  }
53 }
A result encapsulates a value or an error and simplifies the handling of those.
Definition: Ok.php:16
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilErrorHandling $error
Definition: class.ilias.php:55