示例#1
0
 /**
  * tests render
  */
 public function testRender()
 {
     $footnote = new PHPRtfLite_Footnote($this->_rtf, 'hello rtf world!');
     $footnote->render();
     $this->assertEquals('\\chftn {\\footnote\\pard\\plain \\lin283\\fi-283 \\fs20 {\\up6\\chftn}' . "\r\n" . 'hello rtf world!} ', $this->_rtf->getWriter()->getContent());
 }