19 declare(strict_types=1);
36 protected function setUp(): void
39 $this->
lng = $this->getMockBuilder(Language::class)
40 ->disableOriginalConstructor()
43 $less_than_or_equal = 10;
54 $this->assertTrue($this->c->accepts(10));
59 $this->assertFalse($this->c->accepts(11));
65 $this->assertTrue(
true);
70 $this->expectException(UnexpectedValueException::class);
76 $this->assertNull($this->c->problemWith(1));
82 ->expects($this->once())
84 ->with(
"not_less_than_or_equal")
87 $this->assertEquals(
"-10", $this->c->problemWith(11));
92 $ok = $this->df->ok(1);
94 $res = $this->c->applyTo($ok);
95 $this->assertTrue(
$res->isOk());
100 $not_ok = $this->df->ok(13);
102 $res = $this->c->applyTo($not_ok);
103 $this->assertFalse(
$res->isOk());
108 $error = $this->df->error(
"error");
116 $new_c = $this->c->withProblemBuilder(
static function ():
string {
117 return "This was a fault";
119 $this->assertEquals(
"This was a fault", $new_c->problemWith(13));
A constraint encodes some resrtictions on values.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...