ExceptionFormatterTestCase.php 415 B

1234567891011121314151617181920
  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. abstract class ExceptionFormatterTestCase extends TestCase
  15. {
  16. use AssertContains;
  17. }