3 declare(strict_types=1);
38 $this->objective = $this->newObjective();
39 $this->precondition = $this->newObjective();
41 $this->tentatively =
new Objective\Tentatively($this->objective);
42 $this->double_tentatively =
new Objective\Tentatively($this->tentatively);
48 "tentatively " . $this->objective->getHash(),
49 $this->tentatively->getHash()
56 $this->tentatively->getHash(),
57 $this->double_tentatively->getHash()
63 $label =
"some_label";
66 ->expects($this->once())
71 "Tentatively: $label",
72 $this->tentatively->getLabel()
78 $label =
"some_label";
85 $this->tentatively->getLabel(),
86 $this->double_tentatively->getLabel()
95 ->willReturn($notable);
97 $this->assertEquals($notable, $this->tentatively->isNotable());
98 $this->assertEquals($notable, $this->double_tentatively->isNotable());
103 $other = $this->newObjective();
105 $env = $this->createMock(Setup\Environment::class);
108 ->expects($this->once())
109 ->method(
"getPreconditions")
111 ->willReturn([$other]);
115 $this->tentatively->getPreconditions($env)
121 $env = $this->createMock(Setup\Environment::class);
124 ->expects($this->once())
129 $res = $this->tentatively->achieve($env);
130 $this->assertSame($env,
$res);
135 $env = $this->createMock(Setup\Environment::class);
138 ->expects($this->once())
143 $res = $this->tentatively->achieve($env);
144 $this->assertSame($env,
$res);
149 $env = $this->createMock(Setup\Environment::class);
150 $is_applicable = random_int(0, 1) == 1;
153 ->expects($this->once())
154 ->method(
"isApplicable")
156 ->willReturn($is_applicable);
158 $this->assertEquals($is_applicable, $this->tentatively->isApplicable($env));
An objective is a desired state of the system that is supposed to be created by the setup...
Setup Objective $precondition
Signals that some goal won't be achievable by actions of the system ever.
testDoubleTentativelyGetHash()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
A wrapper around an objective that attempts to achieve the wrapped objective but won't stop the proce...
Setup Objective $objective
testDoubleTentativelyGetLabel()
Objective Tentatively $tentatively
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...