ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
s
t
w
+
Functions
_
a
b
c
f
g
h
i
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
CallableObjectiveTest.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
;
6
7
require_once(__DIR__ .
"/Helper.php"
);
8
9
use
ILIAS\Setup
;
10
11
class
CallableObjectiveTest
extends
\PHPUnit\Framework\TestCase
12
{
13
use
Helper
;
14
15
public
function
myMethod
(Setup\
Environment
$environment)
16
{
17
$this->env = $environment;
18
return
$environment;
19
}
20
21
const
NAME
=
"CALL MY METHOD!"
;
22
23
public
function
setUp
() : void
24
{
25
$this->p = $this->newObjective();
26
27
$this->o =
new
Setup\CallableObjective
(
28
[$this,
"myMethod"
],
29
self::NAME,
30
false
,
31
$this->p
32
);
33
}
34
35
public
function
testGetHash
()
36
{
37
$this->assertIsString($this->o->getHash());
38
}
39
40
public
function
testGetLabel
()
41
{
42
$this->assertEquals(self::NAME, $this->o->getLabel());
43
}
44
45
public
function
testIsNotable
()
46
{
47
$this->assertFalse($this->o->isNotable());
48
}
49
50
public
function
testGetPreconditions
()
51
{
52
$env = $this->createMock(Setup\Environment::class);
53
54
$pre = $this->o->getPreconditions($env);
55
$this->assertEquals([$this->p], $pre);
56
}
57
58
59
public
function
testAchieve
()
60
{
61
$this->env = null;
62
63
$env = $this->createMock(Setup\Environment::class);
64
65
$res
= $this->o->achieve($env);
66
$this->assertSame($env,
$res
);
67
$this->assertSame($this->env, $env);
68
}
69
}
ILIAS\Tests\Setup\CallableObjectiveTest\testGetLabel
testGetLabel()
Definition:
CallableObjectiveTest.php:40
ILIAS\Tests\Setup\CallableObjectiveTest\testGetPreconditions
testGetPreconditions()
Definition:
CallableObjectiveTest.php:50
ILIAS\Tests\Setup\CallableObjectiveTest\testIsNotable
testIsNotable()
Definition:
CallableObjectiveTest.php:45
$res
foreach($_POST as $key=> $value) $res
Definition:
save_question_post_data.php:15
Helper
ILIAS\Tests\Setup\CallableObjectiveTest\testAchieve
testAchieve()
Definition:
CallableObjectiveTest.php:59
ILIAS\Setup
Definition:
AchievementTracker.php:5
ILIAS\Tests\Setup\CallableObjectiveTest\setUp
setUp()
Definition:
CallableObjectiveTest.php:23
ILIAS\Setup\Environment
An environment holds resources to be used in the setup process.
Definition:
Environment.php:11
ILIAS\Tests\Setup\CallableObjectiveTest\myMethod
myMethod(Setup\Environment $environment)
Definition:
CallableObjectiveTest.php:15
ILIAS\Setup\CallableObjective
A callable objective wraps a callable into an objective.
Definition:
CallableObjective.php:15
ILIAS\Tests\Setup\CallableObjectiveTest\NAME
const NAME
Definition:
CallableObjectiveTest.php:21
ILIAS\Tests\Setup
Definition:
AdminConfirmedObjectiveTest.php:5
ILIAS\Tests\Setup\CallableObjectiveTest
Definition:
CallableObjectiveTest.php:11
ILIAS\Tests\Setup\CallableObjectiveTest\testGetHash
testGetHash()
Definition:
CallableObjectiveTest.php:35
tests
Setup
CallableObjectiveTest.php
Generated on Wed Apr 2 2025 20:01:29 for ILIAS by
1.8.13 (using
Doxyfile
)