19 declare(strict_types=1);
38 $this->objective = $this->newObjective();
39 $this->precondition = $this->newObjective();
41 $this->with_precondition =
new Objective\ObjectiveWithPreconditions(
49 $hash = $this->with_precondition->getHash();
50 $this->assertNotEquals($this->objective->getHash(), $hash);
51 $this->assertNotEquals($this->precondition->getHash(), $hash);
56 $label =
"some_label";
59 ->expects($this->once())
63 $this->assertEquals($label, $this->with_precondition->getLabel());
71 ->expects($this->once())
73 ->willReturn($notable);
75 $this->assertEquals($notable, $this->with_precondition->isNotable());
80 $another = $this->newObjective();
82 $env = $this->createMock(Setup\Environment::class);
85 ->expects($this->once())
86 ->method(
"getPreconditions")
88 ->willReturn([$another]);
90 $pre = $this->with_precondition->getPreconditions($env);
91 $this->assertEquals([$this->precondition, $another], $pre);
97 $env = $this->createMock(Setup\Environment::class);
100 ->expects($this->once())
105 $res = $this->with_precondition->achieve($env);
106 $this->assertSame($env,
$res);
An objective is a desired state of the system that is supposed to be created by the setup...
Setup Objective $objective
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...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Objective ObjectiveWithPreconditions $with_precondition
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Setup Objective $precondition