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
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\Objective
;
6
7
use
ILIAS\Setup
;
8
use
ILIAS\Setup\Objective
;
9
use
ILIAS\Tests\Setup
as
Test
;
10
use
PHPUnit\Framework\TestCase
;
11
12
class
CallableObjectiveTest
extends
TestCase
13
{
14
use
Test\Helper
;
15
19
protected
$env
;
20
24
protected
$p
;
25
29
protected
$o
;
30
31
public
function
myMethod
(Setup\
Environment
$environment) : Setup\
Environment
32
{
33
$this->env = $environment;
34
return
$environment;
35
}
36
37
const
NAME
=
"CALL MY METHOD!"
;
38
39
public
function
setUp
() : void
40
{
41
$this->p = $this->newObjective();
42
43
$this->o =
new
Objective\CallableObjective(
44
[$this,
"myMethod"
],
45
self::NAME,
46
false
,
47
$this->p
48
);
49
}
50
51
public
function
testGetHash
() : void
52
{
53
$this->assertIsString($this->o->getHash());
54
}
55
56
public
function
testGetLabel
() : void
57
{
58
$this->assertEquals(self::NAME, $this->o->getLabel());
59
}
60
61
public
function
testIsNotable
() : void
62
{
63
$this->assertFalse($this->o->isNotable());
64
}
65
66
public
function
testGetPreconditions
() : void
67
{
68
$env
= $this->createMock(Setup\Environment::class);
69
70
$pre = $this->o->getPreconditions(
$env
);
71
$this->assertEquals([$this->p], $pre);
72
}
73
74
75
public
function
testAchieve
() : void
76
{
77
$this->env = null;
78
79
$env
= $this->createMock(Setup\Environment::class);
80
81
$res
= $this->o->achieve(
$env
);
82
$this->assertSame(
$env
,
$res
);
83
$this->assertSame($this->env,
$env
);
84
}
85
}
ILIAS\Tests\Setup\Objective\CallableObjectiveTest\myMethod
myMethod(Setup\Environment $environment)
Definition:
CallableObjectiveTest.php:31
ILIAS\Tests\Setup\Objective\CallableObjectiveTest\$o
$o
Definition:
CallableObjectiveTest.php:29
ILIAS\Tests\Setup\Objective\CallableObjectiveTest
Definition:
CallableObjectiveTest.php:12
ILIAS\Tests\Setup\Objective\CallableObjectiveTest\testIsNotable
testIsNotable()
Definition:
CallableObjectiveTest.php:61
ILIAS\Tests\Setup\Objective\CallableObjectiveTest\testGetHash
testGetHash()
Definition:
CallableObjectiveTest.php:51
ILIAS\Tests\Setup\Objective\CallableObjectiveTest\testGetPreconditions
testGetPreconditions()
Definition:
CallableObjectiveTest.php:66
Helper
ILIAS\Tests\Setup\Objective\CallableObjectiveTest\testGetLabel
testGetLabel()
Definition:
CallableObjectiveTest.php:56
$res
foreach($_POST as $key=> $value) $res
Definition:
save_question_post_data.php:15
ILIAS\Tests\Setup\Objective\CallableObjectiveTest\setUp
setUp()
Definition:
CallableObjectiveTest.php:39
ILIAS\Tests\Setup\Objective\CallableObjectiveTest\testAchieve
testAchieve()
Definition:
CallableObjectiveTest.php:75
ILIAS\Tests\Setup\Objective\CallableObjectiveTest\NAME
const NAME
Definition:
CallableObjectiveTest.php:37
ILIAS\Tests\Setup\Objective\CallableObjectiveTest\$env
$env
Definition:
CallableObjectiveTest.php:19
ILIAS\Tests\Setup\Objective\CallableObjectiveTest\$p
$p
Definition:
CallableObjectiveTest.php:24
ILIAS\Setup\Objective
Definition:
AdminConfirmedObjective.php:5
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\Setup\Environment
An environment holds resources to be used in the setup process.
Definition:
Environment.php:11
ILIAS\Tests\Setup\Objective
Definition:
AdminConfirmedObjectiveTest.php:5
ILIAS\Tests\Setup
Definition:
AgentCollectionTest.php:5
TestCase
tests
Setup
Objective
CallableObjectiveTest.php
Generated on Thu Apr 3 2025 21:01:39 for ILIAS by
1.8.13 (using
Doxyfile
)