PDF converter * distributed under the OSL-3.0 License * * @package Html2pdf * @author Laurent MINGUET * @copyright 2017 Laurent MINGUET */ namespace Spipu\Html2Pdf\Tests\Tag\Svg; use Spipu\Html2Pdf\Tests\AbstractTest; /** * Class GErrorTest */ class GErrorTest extends AbstractTest { /** * test * * @return void * @expectedException \Spipu\Html2Pdf\Exception\HtmlParsingException */ public function testCase() { $object = $this->getObject(); $object->writeHTML(''); $object->output('test.pdf', 'S'); } }