4 require_once(
"libs/composer/vendor/autoload.php");
32 protected function setUp() : void
34 $this->df =
new Data\Factory();
35 $this->lng = $this->createMock(\ilLanguage::class);
36 $this->refinery = new \ILIAS\Refinery\Factory($this->df, $this->lng);
38 $group = $this->refinery->custom();
40 $this->less_than_3 = $group->constraint(
47 $this->less_than_5 = $group->constraint(
54 $this->c = $this->refinery
56 ->parallel([$this->less_than_3, $this->less_than_5]);
61 $this->assertTrue($this->c->accepts(2));
66 $this->assertFalse($this->c->accepts(4));
72 $this->assertTrue(
true);
77 $this->expectException(\UnexpectedValueException::class);
83 $this->assertNull($this->c->problemWith(2));
89 ->expects($this->never())
92 $this->assertEquals(
"not_less_than_3", $this->c->problemWith(4));
98 ->expects($this->never())
101 $this->assertEquals(
"not_less_than_3 not_less_than_5", $this->c->problemWith(6));
106 $ok = $this->df->ok(2);
109 $this->assertTrue(
$res->isOk());
114 $not_ok = $this->df->ok(7);
116 $res = $this->c->applyTo($not_ok);
117 $this->assertFalse(
$res->isOk());
122 $error = $this->df->error(
"error");
124 $res = $this->c->applyTo($error);
125 $this->assertSame($error,
$res);
130 $new_c = $this->c->withProblemBuilder(
function () {
131 return "This was a fault";
133 $this->assertEquals(
"This was a fault", $new_c->problemWith(7));
foreach($_POST as $key=> $value) $res
TestCase for the parellel constraint.