3 declare(strict_types=1);
36 $this->assertTrue($constraint->
accepts($okValue));
37 $this->assertFalse($constraint->
accepts($errorValue));
51 $constraint->
check($errorValue);
56 $this->assertTrue($raised);
59 $constraint->
check($okValue);
65 $this->assertFalse($raised);
76 $this->assertNull($constraint->
problemWith($okValue));
77 $this->assertIsString($constraint->
problemWith($errorValue));
89 $ok = $rf->ok($okValue);
90 $ok2 = $rf->ok($errorValue);
91 $error = $rf->error(
'text');
93 $result = $constraint->
applyTo($ok);
94 $this->assertTrue($result->isOk());
96 $result = $constraint->
applyTo($ok2);
97 $this->assertTrue($result->isError());
99 $result = $constraint->
applyTo($error);
100 $this->assertSame($error, $result);
112 return "This was a vault";
114 $this->assertEquals(
"This was a vault", $new_constraint->problemWith($errorValue));
122 $mock = $this->getMockBuilder(ilLanguage::class)->disableOriginalConstructor()->getMock();
problemWith($value)
Tells what the problem with the provided value is.
testRestrict(LogicalOr $constraint, $okValue, $errorValue)
constraintsProvider
testAccept(LogicalOr $constraint, $okValue, $errorValue)
constraintsProvider
withProblemBuilder(callable $builder)
Get a constraint like this one with a builder for a custom error message.
testProblemWith(LogicalOr $constraint, $okValue, $errorValue)
constraintsProvider
applyTo(Result $result)
Restricts a Result.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
accepts($value)
Tells if the provided value complies.
testCheck(LogicalOr $constraint, $okValue, $errorValue)
constraintsProvider
check($value)
Checks the provided value.
testWithProblemBuilder(LogicalOr $constraint, $okValue, $errorValue)
constraintsProvider
Refinery Factory $refinery