ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
ilSkinStyleScssCommentTest Class Reference
+ Inheritance diagram for ilSkinStyleScssCommentTest:
+ Collaboration diagram for ilSkinStyleScssCommentTest:

Public Member Functions

 testConstruct ()
 
 testSetters ()
 
 testToString ()
 

Detailed Description

Definition at line 25 of file ilSkinStyleScssCommentTest.php.

Member Function Documentation

◆ testConstruct()

ilSkinStyleScssCommentTest::testConstruct ( )

Definition at line 27 of file ilSkinStyleScssCommentTest.php.

References $comment.

27  : void
28  {
29  $comment = new ilSystemStyleScssComment('comment');
30  $this->assertEquals('comment', $comment->getComment());
31  }
Capsules all data which is neither part of a variable or category structure in the Scss file...
$comment
Definition: buildRTE.php:72

◆ testSetters()

ilSkinStyleScssCommentTest::testSetters ( )

Definition at line 33 of file ilSkinStyleScssCommentTest.php.

References $comment.

33  : void
34  {
35  $comment = new ilSystemStyleScssComment('comment');
36 
37  $comment->setComment('newComment');
38  $this->assertEquals('newComment', $comment->getComment());
39  }
Capsules all data which is neither part of a variable or category structure in the Scss file...
$comment
Definition: buildRTE.php:72

◆ testToString()

ilSkinStyleScssCommentTest::testToString ( )

Definition at line 41 of file ilSkinStyleScssCommentTest.php.

References $comment.

41  : void
42  {
43  $comment = new ilSystemStyleScssComment('comment');
44 
45  $this->assertEquals("comment\n", (string) $comment);
46  }
Capsules all data which is neither part of a variable or category structure in the Scss file...
$comment
Definition: buildRTE.php:72

The documentation for this class was generated from the following file: