16 require_once(
'./libs/composer/vendor/autoload.php');
27 $result = $transformation->transform(array(
'hello' =>
'world'));
29 $this->assertEquals(array(
'hello' =>
'world'),
$result);
34 $this->expectNotToPerformAssertions();
39 $result = $transformation->transform(array(
'world'));
49 $this->expectNotToPerformAssertions();
54 $result = $transformation->transform(array(
'hello' => 1));
64 $this->expectNotToPerformAssertions();
69 $result = $transformation->transform(1);
81 $result = $transformation->applyTo(
new Ok(array(
'hello' =>
'world')));
83 $this->assertEquals(array(
'hello' =>
'world'),
$result->value());
90 $result = $transformation->applyTo(
new Ok(array(
'world')));
92 $this->assertTrue(
$result->isError());
99 $result = $transformation->applyTo(
new Ok(array(
'hello' => 1)));
101 $this->assertTrue(
$result->isError());
108 $result = $transformation->applyTo(
new Ok(1));
110 $this->assertTrue(
$result->isError());
A result encapsulates a value or an error and simplifies the handling of those.