示例#1
0
 /**
  * Test add object exception
  *
  * @expectedException \PhpOffice\PhpWord\Exception\InvalidObjectException
  */
 public function testAddObjectException()
 {
     $src = __DIR__ . "/../_files/xsl/passthrough.xsl";
     $oCell = new Cell('section', 1);
     $element = $oCell->addObject($src);
 }
示例#2
0
 /**
  * Test add object exception
  *
  * @expectedException \PhpOffice\PhpWord\Exception\InvalidObjectException
  */
 public function testAddObjectException()
 {
     $src = __DIR__ . '/../_files/xsl/passthrough.xsl';
     $oCell = new Cell();
     $oCell->addObject($src);
 }