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
ImageMapEditSessionRepositoryTest.php
Go to the documentation of this file.
1
<?php
2
3
use
PHPUnit\Framework\TestCase
;
4
10
class
ImageMapEditSessionRepositoryTest
extends
TestCase
11
{
12
//protected $backupGlobals = false;
13
protected \ILIAS\MediaObjects\ImageMap\ImageMapEditSessionRepository
$repo
;
14
15
protected
function
setUp
(): void
16
{
17
parent::setUp();
18
$this->repo = new \ILIAS\MediaObjects\ImageMap\ImageMapEditSessionRepository();
19
$this->repo->clear();
20
}
21
22
protected
function
tearDown
(): void
23
{
24
}
25
29
public
function
testClear
(): void
30
{
31
$repo =
$this->repo
;
32
33
$repo->setCoords(
"1,2,3"
);
34
$repo->setAreaNr(4);
35
$repo->setLinkType(
"int"
);
36
$repo->clear();
37
$this->assertEquals(
38
""
,
39
$repo->getCoords()
40
);
41
$this->assertEquals(
42
0,
43
$repo->getAreaNr()
44
);
45
$this->assertEquals(
46
""
,
47
$repo->getLinkType()
48
);
49
}
50
51
public
function
testTargetScript
(): void
52
{
53
$repo =
$this->repo
;
54
$repo->setTargetScript(
"ilias.php?a=1"
);
55
$this->assertEquals(
56
"ilias.php?a=1"
,
57
$repo->getTargetScript()
58
);
59
}
60
61
public
function
testLinkType
(): void
62
{
63
$repo =
$this->repo
;
64
$repo->setLinkType(
"ext"
);
65
$this->assertEquals(
66
"ext"
,
67
$repo->getLinkType()
68
);
69
}
70
71
public
function
testAreaNr
(): void
72
{
73
$repo =
$this->repo
;
74
$repo->setAreaNr(4);
75
$this->assertEquals(
76
4,
77
$repo->getAreaNr()
78
);
79
}
80
81
public
function
testCoords
(): void
82
{
83
$repo =
$this->repo
;
84
$repo->setCoords(
"7,8,9,2"
);
85
$this->assertEquals(
86
"7,8,9,2"
,
87
$repo->getCoords()
88
);
89
}
90
91
public
function
testAreaType
(): void
92
{
93
$repo =
$this->repo
;
94
$repo->setAreaType(
"Rect"
);
95
$this->assertEquals(
96
"Rect"
,
97
$repo->getAreaType()
98
);
99
}
100
101
public
function
testExternalLink
(): void
102
{
103
$repo =
$this->repo
;
104
$repo->setExternalLink(
"https://www.ilias.de"
);
105
$this->assertEquals(
106
"https://www.ilias.de"
,
107
$repo->getExternalLink()
108
);
109
}
110
}
ImageMapEditSessionRepositoryTest\$repo
ILIAS MediaObjects ImageMap ImageMapEditSessionRepository $repo
Definition:
ImageMapEditSessionRepositoryTest.php:13
ImageMapEditSessionRepositoryTest\setUp
setUp()
Definition:
ImageMapEditSessionRepositoryTest.php:15
ImageMapEditSessionRepositoryTest\testExternalLink
testExternalLink()
Definition:
ImageMapEditSessionRepositoryTest.php:101
ImageMapEditSessionRepositoryTest
Test clipboard repository.
Definition:
ImageMapEditSessionRepositoryTest.php:10
ImageMapEditSessionRepositoryTest\testCoords
testCoords()
Definition:
ImageMapEditSessionRepositoryTest.php:81
ImageMapEditSessionRepositoryTest\testLinkType
testLinkType()
Definition:
ImageMapEditSessionRepositoryTest.php:61
ImageMapEditSessionRepositoryTest\tearDown
tearDown()
Definition:
ImageMapEditSessionRepositoryTest.php:22
ImageMapEditSessionRepositoryTest\testAreaNr
testAreaNr()
Definition:
ImageMapEditSessionRepositoryTest.php:71
ImageMapEditSessionRepositoryTest\testTargetScript
testTargetScript()
Definition:
ImageMapEditSessionRepositoryTest.php:51
ImageMapEditSessionRepositoryTest\testAreaType
testAreaType()
Definition:
ImageMapEditSessionRepositoryTest.php:91
ImageMapEditSessionRepositoryTest\testClear
testClear()
Test clear.
Definition:
ImageMapEditSessionRepositoryTest.php:29
TestCase
Services
MediaObjects
test
ImageMapEditSessionRepositoryTest.php
Generated on Thu Apr 3 2025 22:02:26 for ILIAS by
1.8.13 (using
Doxyfile
)