ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
ilTermsOfServiceEntityFactoryTest.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
25
class
ilTermsOfServiceEntityFactoryTest
extends
ilTermsOfServiceBaseTest
26
{
27
public
function
testInstanceCanBeCreated
(): void
28
{
29
$factory
=
new
ilTermsOfServiceEntityFactory
();
30
31
$this->assertInstanceOf(ilTermsOfServiceEntityFactory::class,
$factory
);
32
}
33
34
public
function
testExceptionIsRaisedWhenUnknownEntityIsRequested
(): void
35
{
36
$this->expectException(InvalidArgumentException::class);
37
38
$factory
=
new
ilTermsOfServiceEntityFactory
();
39
$factory
->getByName(
'PHP Unit'
);
40
}
41
45
public
function
testAcceptanceEntityIsReturnedWhenRequestedByName
(): void
46
{
47
$factory
=
new
ilTermsOfServiceEntityFactory
();
48
49
$this->assertInstanceOf(
50
ilTermsOfServiceAcceptanceEntity::class,
51
$factory
->getByName(
'ilTermsOfServiceAcceptanceEntity'
)
52
);
53
}
54
}
ilTermsOfServiceEntityFactory
Class ilTermsOfServiceEntityFactory.
Definition:
class.ilTermsOfServiceEntityFactory.php:25
ilTermsOfServiceEntityFactoryTest\testAcceptanceEntityIsReturnedWhenRequestedByName
testAcceptanceEntityIsReturnedWhenRequestedByName()
Definition:
ilTermsOfServiceEntityFactoryTest.php:45
ilTermsOfServiceEntityFactoryTest\testExceptionIsRaisedWhenUnknownEntityIsRequested
testExceptionIsRaisedWhenUnknownEntityIsRequested()
Definition:
ilTermsOfServiceEntityFactoryTest.php:34
ilTermsOfServiceEntityFactoryTest
Class ilTermsOfServiceEntityFactoryTest.
Definition:
ilTermsOfServiceEntityFactoryTest.php:25
ilTermsOfServiceBaseTest
Class ilTermsOfServiceBaseTest.
Definition:
ilTermsOfServiceBaseTest.php:32
ilTermsOfServiceEntityFactoryTest\testInstanceCanBeCreated
testInstanceCanBeCreated()
Definition:
ilTermsOfServiceEntityFactoryTest.php:27
$factory
$factory
Definition:
metadata.php:75
Services
TermsOfService
test
factories
ilTermsOfServiceEntityFactoryTest.php
Generated on Fri Apr 4 2025 22:03:02 for ILIAS by
1.8.13 (using
Doxyfile
)