html2pdf mit composer hinzugefügt
This commit is contained in:
24
vendor/spipu/html2pdf/Tests/CrossVersionCompatibility/PhpUnit9/SvgDrawerTestCase.php
vendored
Normal file
24
vendor/spipu/html2pdf/Tests/CrossVersionCompatibility/PhpUnit9/SvgDrawerTestCase.php
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace Spipu\Html2Pdf\Tests\CrossVersionCompatibility\PhpUnit9;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Spipu\Html2Pdf\CssConverter;
|
||||
use Spipu\Html2Pdf\SvgDrawer;
|
||||
|
||||
abstract class SvgDrawerTestCase extends TestCase
|
||||
{
|
||||
/**
|
||||
* @var SvgDrawer
|
||||
*/
|
||||
protected $svgDrawer;
|
||||
|
||||
public function setUp(): void
|
||||
{
|
||||
$myPdf = $this->createMock('Spipu\Html2Pdf\MyPdf');
|
||||
|
||||
$cssConverter = new CssConverter();
|
||||
|
||||
$this->svgDrawer = new SvgDrawer($myPdf, $cssConverter);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user