예제 #1
0
 public function testComments()
 {
     $test = new SdlTag("commented");
     $comment = "This is a comment";
     $test->setComment($comment);
     $this->assertEquals($comment, $test->getComment());
 }