ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ 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
ilStudyProgrammeAutoCategoryTest.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
use
PHPUnit\Framework\TestCase
;
22
23
class
ilStudyProgrammeAutoCategoryTest
extends
TestCase
24
{
25
protected
int
$prg_obj_id
;
26
protected
int
$cat_ref_id
;
27
protected
int
$usr_id
;
28
protected
DateTimeImmutable
$dat
;
29
30
protected
function
setUp
(): void
31
{
32
$this->prg_obj_id = 123;
33
$this->cat_ref_id = 666;
34
$this->usr_id = 6;
35
$this->dat =
new
DateTimeImmutable
(
'2019-06-05 15:25:12'
);
36
}
37
38
public
function
testConstruction
():
ilStudyProgrammeAutoCategory
39
{
40
$ac =
new
ilStudyProgrammeAutoCategory
(
41
$this->prg_obj_id,
42
$this->cat_ref_id,
43
$this->usr_id,
44
$this->dat
45
);
46
$this->assertInstanceOf(
47
ilStudyProgrammeAutoCategory::class,
48
$ac
49
);
50
return
$ac;
51
}
52
56
public
function
testGetPrgObjId
(
ilStudyProgrammeAutoCategory
$ac): void
57
{
58
$this->assertEquals(
59
$this->prg_obj_id,
60
$ac->
getPrgObjId
()
61
);
62
}
63
67
public
function
testGetCategoryRefId
(
ilStudyProgrammeAutoCategory
$ac): void
68
{
69
$this->assertEquals(
70
$this->cat_ref_id,
71
$ac->
getCategoryRefId
()
72
);
73
}
74
78
public
function
testGetLastEditorId
(
ilStudyProgrammeAutoCategory
$ac): void
79
{
80
$this->assertEquals(
81
$this->usr_id,
82
$ac->
getLastEditorId
()
83
);
84
}
85
89
public
function
testGetLastEdited
(
ilStudyProgrammeAutoCategory
$ac): void
90
{
91
$this->assertEquals(
92
$this->dat,
93
$ac->
getLastEdited
()
94
);
95
}
96
}
ilStudyProgrammeAutoCategoryTest
Definition:
ilStudyProgrammeAutoCategoryTest.php:23
ilStudyProgrammeAutoCategoryTest\$usr_id
int $usr_id
Definition:
ilStudyProgrammeAutoCategoryTest.php:27
DateTimeImmutable
ilStudyProgrammeAutoCategoryTest\testGetCategoryRefId
testGetCategoryRefId(ilStudyProgrammeAutoCategory $ac)
testConstruction
Definition:
ilStudyProgrammeAutoCategoryTest.php:67
ilStudyProgrammeAutoCategory\getCategoryRefId
getCategoryRefId()
Definition:
class.ilStudyProgrammeAutoCategory.php:50
ilStudyProgrammeAutoCategoryTest\testGetLastEdited
testGetLastEdited(ilStudyProgrammeAutoCategory $ac)
testConstruction
Definition:
ilStudyProgrammeAutoCategoryTest.php:89
ilStudyProgrammeAutoCategoryTest\$prg_obj_id
int $prg_obj_id
Definition:
ilStudyProgrammeAutoCategoryTest.php:25
ilStudyProgrammeAutoCategory\getLastEdited
getLastEdited()
Definition:
class.ilStudyProgrammeAutoCategory.php:60
ilStudyProgrammeAutoCategoryTest\testConstruction
testConstruction()
Definition:
ilStudyProgrammeAutoCategoryTest.php:38
ilStudyProgrammeAutoCategoryTest\testGetPrgObjId
testGetPrgObjId(ilStudyProgrammeAutoCategory $ac)
testConstruction
Definition:
ilStudyProgrammeAutoCategoryTest.php:56
ilStudyProgrammeAutoCategoryTest\$dat
DateTimeImmutable $dat
Definition:
ilStudyProgrammeAutoCategoryTest.php:28
ilStudyProgrammeAutoCategory\getPrgObjId
getPrgObjId()
Definition:
class.ilStudyProgrammeAutoCategory.php:45
ilStudyProgrammeAutoCategoryTest\testGetLastEditorId
testGetLastEditorId(ilStudyProgrammeAutoCategory $ac)
testConstruction
Definition:
ilStudyProgrammeAutoCategoryTest.php:78
ilStudyProgrammeAutoCategory\getLastEditorId
getLastEditorId()
Definition:
class.ilStudyProgrammeAutoCategory.php:55
ilStudyProgrammeAutoCategory
Class ilStudyProgrammeAutoCategory.
Definition:
class.ilStudyProgrammeAutoCategory.php:26
ilStudyProgrammeAutoCategoryTest\$cat_ref_id
int $cat_ref_id
Definition:
ilStudyProgrammeAutoCategoryTest.php:26
ilStudyProgrammeAutoCategoryTest\setUp
setUp()
Definition:
ilStudyProgrammeAutoCategoryTest.php:30
TestCase
TestCase
components
ILIAS
StudyProgramme
tests
model
AutoCategories
ilStudyProgrammeAutoCategoryTest.php
Generated on Wed Apr 2 2025 23:03:39 for ILIAS by
1.8.13 (using
Doxyfile
)