19 declare(strict_types=1);
37 $this->assertInstanceOf(Transform::class,
new Transform());
47 $transformation = $this->getMockBuilder(Transformation::class)->getMock();
48 $transformation->method(
'applyTo')->willReturnCallback(
function (
Result $x) use ($transformed):
Result {
49 $this->assertEquals(
'x', $x->
value());
50 return new Ok($transformed);
60 $this->assertEquals([$transformed], $x->
value()->accepted());
64 $this->assertEquals($end, $x->
value());
73 $transformation = $this->getMockBuilder(Transformation::class)->getMock();
74 $transformation->method(
'applyTo')->willReturnCallback(
function (
Result $x):
Result {
75 $this->assertEquals(
'x', $x->
value());
76 return new Error(
'Sorryy.');
86 $this->assertFalse($x->
isOK());
90 $this->assertEquals($end, $x->
value());
99 $transformCalled =
false;
100 $transformation = $this->getMockBuilder(Transformation::class)->getMock();
101 $transformation->method(
'applyTo')->willReturnCallback(
function (
Result $x) use (&$transformCalled):
Result {
102 $transformCalled =
true;
113 $this->assertFalse($x->
isOK());
117 $this->assertEquals($end, $x->
value());
118 $this->assertFalse($transformCalled);
132 $this->assertTrue($result->isOK());
133 $this->assertEquals([
'hej' =>
'l'], $result->value());
isOK()
Get to know if the result is ok.
value()
Get the encapsulated value.
map(callable $f)
Create a new result where the contained value is modified with $f.
A result encapsulates a value or an error and simplifies the handling of those.