14 require_once(
'./libs/composer/vendor/autoload.php');
25 $object = $transformation->transform(array(
'hello', 42));
29 $this->assertEquals(array(
'hello', 42),
$result);
34 $this->expectNotToPerformAssertions();
39 $object = $transformation->transform(array(
'hello',
'world'));
40 }
catch (\TypeError $exception) {
54 $resultObject = $transformation->applyTo(
new Ok(array(
'hello', 42)));
56 $object = $resultObject->value();
60 $this->assertEquals(array(
'hello', 42),
$result);
65 $this->expectNotToPerformAssertions();
70 $resultObject = $transformation->applyTo(
new Ok(array(
'hello',
'world')));
71 }
catch (\
Error $error) {
82 $resultObject = $transformation->applyTo(
new Ok(array(
'hello', 100)));
84 $this->assertTrue($resultObject->isError());
89 $this->expectNotToPerformAssertions();
94 $resultObject = $transformation->transform(array(
'hello', 100));
111 $this->
string = $string;
112 $this->integer = $integer;
117 return array($this->
string, $this->integer);
125 throw new \Exception();
A result encapsulates a value or an error and simplifies the handling of those.
A result encapsulates a value or an error and simplifies the handling of those.