19 declare(strict_types=1);
36 $this->label_t =
"condition_true";
43 $this->label_f =
"condition_false";
54 $this->assertIsString($this->t->getHash());
59 $this->assertNotEquals($this->t->getHash(), $this->f->getHash());
64 $this->assertIsString($this->f->getLabel());
65 $this->assertEquals($this->label_f, $this->f->getLabel());
66 $this->assertEquals($this->label_t, $this->t->getLabel());
71 $this->assertTrue($this->f->isNotable());
76 $env = $this->createMock(Setup\Environment::class);
78 $pre = $this->f->getPreconditions($env);
79 $this->assertEquals([], $pre);
84 $this->expectException(Setup\UnachievableException::class);
85 $env = $this->createMock(Setup\Environment::class);
86 $this->f->achieve($env);
91 $env = $this->createMock(Setup\Environment::class);
92 $res = $this->t->achieve($env);
93 $this->assertEquals($env,
$res);
98 $env = $this->createMock(Setup\Environment::class);
109 $this->expectException(Setup\NotExecutableException::class);
110 $throws_not_executable->achieve($env);
115 $env = $this->createMock(Setup\Environment::class);
126 $this->expectException(Setup\UnachievableException::class);
127 $throws_unachievable->achieve($env);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testHashIsDifferentForDifferentMessages()
Condition ExternalConditionObjective $t
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.
A condition that can't be met by ILIAS itself needs to be met by some external means.
Condition ExternalConditionObjective $f