ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
ExternalConditionObjectiveTest.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 2019 Richard Klees <richard.klees@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4
5
namespace
ILIAS\Tests\Setup\Condition
;
6
7
use
ILIAS\Setup
;
8
use
ILIAS\Setup\Condition
;
9
use
PHPUnit\Framework\TestCase
;
10
11
class
ExternalConditionObjectiveTest
extends
TestCase
12
{
16
protected
$label_t
;
17
21
protected
$t
;
22
26
protected
$label_f
;
27
31
protected
$f
;
32
33
public
function
setUp
() : void
34
{
35
$this->label_t =
"condition_true"
;
36
$this->t =
new
Condition\ExternalConditionObjective
(
37
$this->label_t,
38
function
(Setup\
Environment
$e
) {
39
return
true
;
40
}
41
);
42
$this->label_f =
"condition_false"
;
43
$this->f =
new
Condition\ExternalConditionObjective
(
44
$this->label_f,
45
function
(Setup\
Environment
$e) {
46
return
false
;
47
}
48
);
49
}
50
51
public
function
testGetHash
() : void
52
{
53
$this->assertIsString($this->t->getHash());
54
}
55
56
public
function
testHashIsDifferentForDifferentMessages
() : void
57
{
58
$this->assertNotEquals($this->t->getHash(), $this->f->getHash());
59
}
60
61
public
function
testGetLabel
() : void
62
{
63
$this->assertIsString($this->f->getLabel());
64
$this->assertEquals($this->label_f, $this->f->getLabel());
65
$this->assertEquals($this->label_t, $this->t->getLabel());
66
}
67
68
public
function
testIsNotable
() : void
69
{
70
$this->assertTrue($this->f->isNotable());
71
}
72
73
public
function
testGetPreconditions
() : void
74
{
75
$env = $this->createMock(Setup\Environment::class);
76
77
$pre = $this->f->getPreconditions($env);
78
$this->assertEquals([], $pre);
79
}
80
81
public
function
testAchieveFalse
() : void
82
{
83
$this->expectException(Setup\UnachievableException::class);
84
$env = $this->createMock(Setup\Environment::class);
85
$this->f->achieve($env);
86
}
87
88
89
public
function
testAchieveTrue
() : void
90
{
91
$env = $this->createMock(Setup\Environment::class);
92
$res
= $this->t->achieve($env);
93
$this->assertEquals($env,
$res
);
94
}
95
}
ILIAS\Tests\Setup\Condition\ExternalConditionObjectiveTest\testGetLabel
testGetLabel()
Definition:
ExternalConditionObjectiveTest.php:61
ILIAS\Tests\Setup\Condition\ExternalConditionObjectiveTest\testIsNotable
testIsNotable()
Definition:
ExternalConditionObjectiveTest.php:68
ILIAS\Tests\Setup\Condition\ExternalConditionObjectiveTest\$label_f
$label_f
Definition:
ExternalConditionObjectiveTest.php:26
Vendor\Package\$e
$e
Definition:
example_cleaned.php:31
ILIAS\Tests\Setup\Condition\ExternalConditionObjectiveTest\$label_t
$label_t
Definition:
ExternalConditionObjectiveTest.php:16
ILIAS\Tests\Setup\Condition\ExternalConditionObjectiveTest\testAchieveTrue
testAchieveTrue()
Definition:
ExternalConditionObjectiveTest.php:89
ILIAS\Tests\Setup\Condition\ExternalConditionObjectiveTest\$t
$t
Definition:
ExternalConditionObjectiveTest.php:21
$res
foreach($_POST as $key=> $value) $res
Definition:
save_question_post_data.php:15
ILIAS\Tests\Setup\Condition\ExternalConditionObjectiveTest\testAchieveFalse
testAchieveFalse()
Definition:
ExternalConditionObjectiveTest.php:81
ILIAS\Setup\Condition
Definition:
CanCreateDirectoriesInDirectoryCondition.php:5
ILIAS\Tests\Setup\Condition\ExternalConditionObjectiveTest\testHashIsDifferentForDifferentMessages
testHashIsDifferentForDifferentMessages()
Definition:
ExternalConditionObjectiveTest.php:56
ILIAS\Tests\Setup\Condition\ExternalConditionObjectiveTest\setUp
setUp()
Definition:
ExternalConditionObjectiveTest.php:33
ILIAS\Setup
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
AdminInteraction.php:5
ILIAS\Tests\Setup\Condition\ExternalConditionObjectiveTest\testGetHash
testGetHash()
Definition:
ExternalConditionObjectiveTest.php:51
ILIAS\Setup\Environment
An environment holds resources to be used in the setup process.
Definition:
Environment.php:11
ILIAS\Setup\Condition\ExternalConditionObjective
A condition that can't be met by ILIAS itself needs to be met by some external means.
Definition:
ExternalConditionObjective.php:16
ILIAS\Tests\Setup\Condition\ExternalConditionObjectiveTest\testGetPreconditions
testGetPreconditions()
Definition:
ExternalConditionObjectiveTest.php:73
ILIAS\Tests\Setup\Condition\ExternalConditionObjectiveTest
Definition:
ExternalConditionObjectiveTest.php:11
TestCase
ILIAS\Tests\Setup\Condition\ExternalConditionObjectiveTest\$f
$f
Definition:
ExternalConditionObjectiveTest.php:31
ILIAS\Tests\Setup\Condition
Definition:
ExternalConditionObjectiveTest.php:5
tests
Setup
Condition
ExternalConditionObjectiveTest.php
Generated on Sat Apr 5 2025 21:01:48 for ILIAS by
1.8.13 (using
Doxyfile
)