コード例 #1
0
ファイル: CellTest.php プロジェクト: kaantunc/MYK-BOR
 /**
  * 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
ファイル: CellTest.php プロジェクト: brunodebarros/phpword
 /**
  * Test add object exception
  *
  * @expectedException \PhpOffice\PhpWord\Exception\InvalidObjectException
  */
 public function testAddObjectException()
 {
     $src = __DIR__ . '/../_files/xsl/passthrough.xsl';
     $oCell = new Cell();
     $oCell->addObject($src);
 }