ILIAS
trunk Revision v11.0_alpha-1753-gb21ca8c4367
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
TypeSpecificDataTest.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\AdvancedMetaData\Data\FieldDefinition\TypeSpecificData
;
22
23
use
PHPUnit\Framework\TestCase
;
24
use
ILIAS\AdvancedMetaData\Data\FieldDefinition\Type
;
25
26
class
TypeSpecificDataTest
extends
TestCase
27
{
28
protected
function
getData
(?
int
$field_id =
null
):
TypeSpecificDataImplementation
29
{
30
return
new
class
($field_id) extends
TypeSpecificDataImplementation
{
31
public
function
isTypeSupported(
Type
$type):
bool
32
{
33
return
true
;
34
}
35
36
protected
function
getSubData(): \Generator
37
{
38
yield
from
[];
39
}
40
};
41
}
42
43
public
function
testIsPersistedTrue
(): void
44
{
45
$data
= $this->
getData
(7);
46
$this->assertTrue(
$data
->isPersisted());
47
}
48
49
public
function
testIsPersistedFalse
(): void
50
{
51
$data
= $this->
getData
();
52
$this->assertFalse(
$data
->isPersisted());
53
}
54
}
ILIAS\MetaData\Elements\Data\Data::FieldDefinition::TypeSpecificData\TypeSpecificDataTest\testIsPersistedTrue
testIsPersistedTrue()
Definition:
TypeSpecificDataTest.php:43
$data
$data
Definition:
ltiregistration.php:29
ILIAS\MetaData\Elements\Data\Data::FieldDefinition::TypeSpecificData\TypeSpecificDataTest
Definition:
TypeSpecificDataTest.php:26
ILIAS\MetaData\Elements\Data\Data::FieldDefinition::TypeSpecificData\TypeSpecificDataTest\getData
getData(?int $field_id=null)
Definition:
TypeSpecificDataTest.php:28
ILIAS\MetaData\Elements\Data\Data::FieldDefinition::TypeSpecificData\TypeSpecificDataImplementation
Definition:
TypeSpecificDataImplementation.php:26
ILIAS\MetaData\Elements\Data\Data::FieldDefinition::TypeSpecificData\TypeSpecificDataTest\testIsPersistedFalse
testIsPersistedFalse()
Definition:
TypeSpecificDataTest.php:49
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ILIAS\AdvancedMetaData\Data\FieldDefinition\TypeSpecificData
ILIAS\AdvancedMetaData\Data\FieldDefinition\Type
Type
Definition:
Type.php:23
ILIAS\MetaData\Elements\Data\Type
Type
Definition:
Type.php:23
ILIAS\ResourceStorage\Flavour\Machine\DefaultMachines\from
from(FileStream $stream)
Definition:
GdImageToStreamTrait.php:48
TestCase
components
ILIAS
AdvancedMetaData
tests
Data
FieldDefinition
TypeSpecificData
TypeSpecificDataTest.php
Generated on Thu Apr 10 2025 23:02:27 for ILIAS by
1.8.13 (using
Doxyfile
)