19 declare(strict_types=1);
23 require_once(__DIR__ .
"/../Helper.php");
32 use \ILIAS\Tests\Setup\Helper;
40 $this->objective = $this->newObjective();
41 $this->precondition = $this->newObjective();
43 $this->with_precondition =
new Objective\ObjectiveWithPreconditions(
51 $hash = $this->with_precondition->getHash();
52 $this->assertNotEquals($this->objective->getHash(), $hash);
53 $this->assertNotEquals($this->precondition->getHash(), $hash);
58 $label =
"some_label";
61 ->expects($this->once())
65 $this->assertEquals($label, $this->with_precondition->getLabel());
73 ->expects($this->once())
75 ->willReturn($notable);
77 $this->assertEquals($notable, $this->with_precondition->isNotable());
82 $another = $this->newObjective();
84 $env = $this->createMock(
Setup\Environment::class);
87 ->expects($this->once())
88 ->method(
"getPreconditions")
90 ->willReturn([$another]);
92 $pre = $this->with_precondition->getPreconditions($env);
93 $this->assertEquals([$this->precondition, $another], $pre);
99 $env = $this->createMock(
Setup\Environment::class);
102 ->expects($this->once())
107 $res = $this->with_precondition->achieve($env);
108 $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...
Objective ObjectiveWithPreconditions $with_precondition
Setup Objective $precondition