ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
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
ilSkinStyleLessCommentTest.php
Go to the documentation of this file.
1
<?php
2
3
include_once(
"./Services/Style/System/classes/Less/class.ilSystemStyleLessComment.php"
);
4
5
use
PHPUnit\Framework\TestCase
;
6
12
class
ilSkinStyleLessCommentTest
extends
TestCase
13
{
14
public
function
testConstruct
()
15
{
16
$comment
=
new
ilSystemStyleLessComment
(
"comment"
);
17
$this->assertEquals(
"comment"
,
$comment
->getComment());
18
}
19
20
public
function
testSetters
()
21
{
22
$comment
=
new
ilSystemStyleLessComment
(
"name"
,
"comment"
);
23
24
$comment
->setComment(
"newComment"
);
25
$this->assertEquals(
"newComment"
,
$comment
->getComment());
26
}
27
28
public
function
testToString
()
29
{
30
$comment
=
new
ilSystemStyleLessComment
(
"comment"
);
31
32
$this->assertEquals(
"comment\n"
, (
string
)
$comment
);
33
}
34
}
ilSkinStyleLessCommentTest\testToString
testToString()
Definition:
ilSkinStyleLessCommentTest.php:28
ilSkinStyleLessCommentTest\testSetters
testSetters()
Definition:
ilSkinStyleLessCommentTest.php:20
$comment
$comment
Definition:
buildRTE.php:83
ilSystemStyleLessComment
Capsules all data which is neither part of a variable or category structure in the less file...
Definition:
class.ilSystemStyleLessComment.php:15
ilSkinStyleLessCommentTest\testConstruct
testConstruct()
Definition:
ilSkinStyleLessCommentTest.php:14
TestCase
ilSkinStyleLessCommentTest
Definition:
ilSkinStyleLessCommentTest.php:12
Services
Style
System
test
ilSkinStyleLessCommentTest.php
Generated on Wed Apr 2 2025 21:01:36 for ILIAS by
1.8.13 (using
Doxyfile
)