10 require_once(
'./libs/composer/vendor/autoload.php');
31 $transformedValue = $this->transformation->transform(200);
33 $this->assertEquals(200, $transformedValue);
38 $transformedValue = $this->transformation->transform(-200);
40 $this->assertEquals(-200, $transformedValue);
45 $transformedValue = $this->transformation->transform(0);
47 $this->assertEquals(0, $transformedValue);
52 $this->expectNotToPerformAssertions();
55 $transformedValue = $this->transformation->transform(
'hello');
65 $this->expectNotToPerformAssertions();
68 $transformedValue = $this->transformation->transform(10.5);
78 $this->expectNotToPerformAssertions();
81 $transformedValue = $this->transformation->transform(
true);
91 $this->expectNotToPerformAssertions();
94 $transformedValue = $this->transformation->transform(
false);
104 $resultObject =
new Result\Ok(
'hello');
106 $transformedObject = $this->transformation->applyTo($resultObject);
108 $this->assertTrue($transformedObject->isError());
113 $resultObject =
new Result\Ok(200);
115 $transformedObject = $this->transformation->applyTo($resultObject);
117 $this->assertEquals(200, $transformedObject->value());
122 $resultObject =
new Result\Ok(-200);
124 $transformedObject = $this->transformation->applyTo($resultObject);
126 $this->assertEquals(-200, $transformedObject->value());
131 $resultObject =
new Result\Ok(0);
133 $transformedObject = $this->transformation->applyTo($resultObject);
135 $this->assertEquals(0, $transformedObject->value());
140 $resultObject =
new Result\Ok(10.5);
142 $transformedObject = $this->transformation->applyTo($resultObject);
144 $this->assertTrue($transformedObject->isError());
149 $resultObject =
new Result\Ok(
true);
151 $transformedObject = $this->transformation->applyTo($resultObject);
153 $this->assertTrue($transformedObject->isError());