TextParserTestCase.php 576 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * Html2Pdf Library - Tests
  4. *
  5. * HTML => PDF converter
  6. * distributed under the OSL-3.0 License
  7. *
  8. * @package Html2pdf
  9. * @author Laurent MINGUET <webmaster@html2pdf.fr>
  10. * @copyright 2023 Laurent MINGUET
  11. */
  12. namespace Spipu\Html2Pdf\Tests\CrossVersionCompatibility\PhpUnit9;
  13. use PHPUnit\Framework\TestCase;
  14. use Spipu\Html2Pdf\Parsing\TextParser;
  15. abstract class TextParserTestCase extends TestCase
  16. {
  17. /**
  18. * @var TextParser
  19. */
  20. protected $parser;
  21. protected function setUp(): void
  22. {
  23. $this->parser = new TextParser();
  24. }
  25. }