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
ArrayArtifactTest.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
ArrayArtifactTest
extends
\PHPUnit\Framework\TestCase
10
{
11
public
function
testSerialize
()
12
{
13
$data
= [
14
"one"
=> 1,
15
"two"
=> 2,
16
"nested"
=> [
17
"array"
=>
"are nice"
18
]
19
];
20
21
$a
=
new
Setup\ArrayArtifact
(
$data
);
22
23
$serialized =
$a
->serialize();
24
25
$this->assertEquals(
$data
, eval(
"?>"
. $serialized));
26
}
27
28
public
function
testOnlyPrimitives
()
29
{
30
$this->expectException(\InvalidArgumentException::class);
31
32
$data
= [ $this ];
33
34
$a
=
new
Setup\ArrayArtifact
(
$data
);
35
}
36
}
$data
$data
Definition:
storeScorm.php:23
ILIAS\Tests\Setup\ArrayArtifactTest\testSerialize
testSerialize()
Definition:
ArrayArtifactTest.php:11
ILIAS\Setup\ArrayArtifact
An array as an artifact.
Definition:
ArrayArtifact.php:10
ILIAS\Tests\Setup\ArrayArtifactTest
Definition:
ArrayArtifactTest.php:9
ILIAS\Setup
Definition:
AchievementTracker.php:5
Vendor\Package\$a
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
Definition:
example_cleaned.php:31
ILIAS\Tests\Setup\ArrayArtifactTest\testOnlyPrimitives
testOnlyPrimitives()
Definition:
ArrayArtifactTest.php:28
ILIAS\Tests\Setup
Definition:
AdminConfirmedObjectiveTest.php:5
tests
Setup
ArrayArtifactTest.php
Generated on Thu Apr 3 2025 20:01:23 for ILIAS by
1.8.13 (using
Doxyfile
)