示例#1
0
 /**
  * Add preserve text exception
  *
  * @expectedException \BadMethodCallException
  */
 public function testAddPreserveTextException()
 {
     $oCell = new Cell();
     $oCell->setDocPart('Section', 1);
     $oCell->addPreserveText('text');
 }
示例#2
0
 /**
  * Add preserve text exception
  *
  * @expectedException \BadMethodCallException
  */
 public function testAddPreserveTextException()
 {
     $oCell = new Cell('section', 1);
     $element = $oCell->addPreserveText('text');
 }
示例#3
0
 /**
  * Add preserve text exception
  *
  * @expectedException \BadMethodCallException
  */
 public function testAddPreserveTextException()
 {
     $oCell = new Cell();
     $oCell->setDocPart('Section', 1);
     $oCell->addPreserveText(htmlspecialchars('text', ENT_COMPAT, 'UTF-8'));
 }