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
NullObjectiveTest.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
use
ILIAS\Setup
;
8
9
class
NullObjectiveTest
extends
\PHPUnit\Framework\TestCase
10
{
11
public
function
setUp
() : void
12
{
13
$this->o =
new
Setup\NullObjective
();
14
}
15
16
public
function
testGetHash
()
17
{
18
$this->assertIsString($this->o->getHash());
19
}
20
21
public
function
testGetLabel
()
22
{
23
$this->assertEquals(
"Nothing to do."
, $this->o->getLabel());
24
}
25
26
public
function
testIsNotable
()
27
{
28
$this->assertFalse($this->o->isNotable());
29
}
30
31
public
function
testGetPreconditions
()
32
{
33
$env = $this->createMock(Setup\Environment::class);
34
35
$pre = $this->o->getPreconditions($env);
36
$this->assertEquals([], $pre);
37
}
38
39
40
public
function
testAchieve
()
41
{
42
$env = $this->createMock(Setup\Environment::class);
43
44
$res
= $this->o->achieve($env);
45
$this->assertSame($env,
$res
);
46
}
47
}
ILIAS\Tests\Setup\NullObjectiveTest\testIsNotable
testIsNotable()
Definition:
NullObjectiveTest.php:26
ILIAS\Tests\Setup\NullObjectiveTest
Definition:
NullObjectiveTest.php:9
ILIAS\Tests\Setup\NullObjectiveTest\testAchieve
testAchieve()
Definition:
NullObjectiveTest.php:40
ILIAS\Tests\Setup\NullObjectiveTest\testGetHash
testGetHash()
Definition:
NullObjectiveTest.php:16
ILIAS\Tests\Setup\NullObjectiveTest\setUp
setUp()
Definition:
NullObjectiveTest.php:11
$res
foreach($_POST as $key=> $value) $res
Definition:
save_question_post_data.php:15
ILIAS\Setup\NullObjective
A non-objective, nothing to do to achieve it...
Definition:
NullObjective.php:12
ILIAS\Setup
Definition:
AchievementTracker.php:5
ILIAS\Tests\Setup\NullObjectiveTest\testGetLabel
testGetLabel()
Definition:
NullObjectiveTest.php:21
ILIAS\Tests\Setup\NullObjectiveTest\testGetPreconditions
testGetPreconditions()
Definition:
NullObjectiveTest.php:31
ILIAS\Tests\Setup
Definition:
AdminConfirmedObjectiveTest.php:5
tests
Setup
NullObjectiveTest.php
Generated on Thu Apr 3 2025 20:01:23 for ILIAS by
1.8.13 (using
Doxyfile
)