示例#1
0
 /**
  * @covers Xoops\Core\Text\Sanitizer::undoHtmlSpecialChars
  */
 public function testUndoHtmlSpecialChars()
 {
     $text = '><"' ';
     $message = $this->object->undohtmlSpecialChars($text);
     $this->assertSame('><"\'&nbsp;', $message);
 }