19 declare(strict_types=1);
23 require_once(__DIR__ .
"/../Helper.php");
36 protected Objective\CallableObjective
$o;
40 $this->env = $environment;
44 public const NAME =
"CALL MY METHOD!";
48 $this->p = $this->newObjective();
50 $this->o =
new Objective\CallableObjective(
60 $this->assertIsString($this->o->getHash());
65 $this->assertEquals(self::NAME, $this->o->getLabel());
70 $this->assertFalse($this->o->isNotable());
75 $env = $this->createMock(
Setup\Environment::class);
77 $pre = $this->o->getPreconditions($env);
78 $this->assertEquals([$this->p], $pre);
86 $env = $this->createMock(
Setup\Environment::class);
88 $res = $this->o->achieve($env);
89 $this->assertSame($env,
$res);
90 $this->assertSame($this->env, $env);
myMethod(Setup\Environment $environment)
An objective is a desired state of the system that is supposed to be created by the setup...
Objective CallableObjective $o
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
An environment holds resources to be used in the setup process.