21 lines
415 B
PHP
21 lines
415 B
PHP
<?php
|
|
/**
|
|
* Html2Pdf Library - Tests
|
|
*
|
|
* HTML => PDF converter
|
|
* distributed under the OSL-3.0 License
|
|
*
|
|
* @package Html2pdf
|
|
* @author Laurent MINGUET <webmaster@html2pdf.fr>
|
|
* @copyright 2017 Laurent MINGUET
|
|
*/
|
|
|
|
namespace Spipu\Html2Pdf\Tests\CrossVersionCompatibility\PhpUnit9;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
abstract class ExceptionFormatterTestCase extends TestCase
|
|
{
|
|
use AssertContains;
|
|
}
|