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
ilStudyProgrammeAutoCategoryTest.php
Go to the documentation of this file.
1
<?php
2
3
class
ilStudyProgrammeAutoCategoryTest
extends
\PHPUnit\Framework\TestCase
4
{
5
protected
$backupGlobals
=
false
;
6
7
public
function
setUp
() : void
8
{
9
PHPUnit_Framework_Error_Deprecated::$enabled =
false
;
10
$this->prg_obj_id = 123;
11
$this->cat_ref_id = 666;
12
$this->usr_id = 6;
13
$this->dat =
new
DateTimeImmutable
(
'2019-06-05 15:25:12'
);
14
}
15
16
public
function
testConstruction
()
17
{
18
$ac =
new
ilStudyProgrammeAutoCategory
(
19
$this->prg_obj_id,
20
$this->cat_ref_id,
21
$this->usr_id,
22
$this->dat
23
);
24
$this->assertInstanceOf(
25
ilStudyProgrammeAutoCategory::class,
26
$ac
27
);
28
return
$ac;
29
}
30
34
public
function
testGetPrgObjId
($ac)
35
{
36
$this->assertEquals(
37
$this->prg_obj_id,
38
$ac->getPrgObjId()
39
);
40
}
41
45
public
function
testGetCategoryRefId
($ac)
46
{
47
$this->assertEquals(
48
$this->cat_ref_id,
49
$ac->getCategoryRefId()
50
);
51
}
52
56
public
function
testGetLastEditorId
($ac)
57
{
58
$this->assertEquals(
59
$this->usr_id,
60
$ac->getLastEditorId()
61
);
62
}
63
67
public
function
testGetLastEdited
($ac)
68
{
69
$this->assertEquals(
70
$this->dat,
71
$ac->getLastEdited()
72
);
73
}
74
}
ilStudyProgrammeAutoCategoryTest
Definition:
ilStudyProgrammeAutoCategoryTest.php:3
DateTimeImmutable
ilStudyProgrammeAutoCategoryTest\testGetLastEdited
testGetLastEdited($ac)
testConstruction
Definition:
ilStudyProgrammeAutoCategoryTest.php:67
ilStudyProgrammeAutoCategoryTest\testGetCategoryRefId
testGetCategoryRefId($ac)
testConstruction
Definition:
ilStudyProgrammeAutoCategoryTest.php:45
ilStudyProgrammeAutoCategoryTest\testConstruction
testConstruction()
Definition:
ilStudyProgrammeAutoCategoryTest.php:16
ilStudyProgrammeAutoCategoryTest\testGetLastEditorId
testGetLastEditorId($ac)
testConstruction
Definition:
ilStudyProgrammeAutoCategoryTest.php:56
ilStudyProgrammeAutoCategory
Class ilStudyProgrammeAutoCategory.
Definition:
class.ilStudyProgrammeAutoCategory.php:10
ilStudyProgrammeAutoCategoryTest\testGetPrgObjId
testGetPrgObjId($ac)
testConstruction
Definition:
ilStudyProgrammeAutoCategoryTest.php:34
ilStudyProgrammeAutoCategoryTest\$backupGlobals
$backupGlobals
Definition:
ilStudyProgrammeAutoCategoryTest.php:5
ilStudyProgrammeAutoCategoryTest\setUp
setUp()
Definition:
ilStudyProgrammeAutoCategoryTest.php:7
Modules
StudyProgramme
test
model
AutoCategories
ilStudyProgrammeAutoCategoryTest.php
Generated on Thu Apr 3 2025 20:00:55 for ILIAS by
1.8.13 (using
Doxyfile
)