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
ilStudyProgrammeAutoCategoryTest.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
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
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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
Modules
StudyProgramme
test
model
AutoCategories
ilStudyProgrammeAutoCategoryTest.php
Generated on Fri Apr 4 2025 22:01:57 for ILIAS by
1.8.13 (using
Doxyfile
)