1 <?php declare(strict_types=1);
5 require_once(
'./libs/composer/vendor/autoload.php');
29 'empty string' => [
'',
true],
30 'space' => [
' ',
true],
31 'spaces' => [
' ',
true],
32 'null' => [null,
true],
33 'string' => [
'str',
false],
35 'negative int' => [-1,
false],
37 'array' => [[],
false],
38 'bool (false)' => [
false,
false],
39 'bool (true)' => [
true,
false]
49 $this->expectException(ConstraintViolationException::class);
51 $transformed = $this->transformation->transform($value);
52 $this->assertNull($transformed);