2
0

LegacyTestCase.php 234 B

123456789101112131415161718
  1. <?php
  2. declare(strict_types=1);
  3. namespace PhpZip\Tests\Polyfill;
  4. use PHPUnit\Framework\TestCase;
  5. /**
  6. * @internal
  7. *
  8. * @small
  9. */
  10. class LegacyTestCase extends TestCase
  11. {
  12. use PhpUnit8CompatTrait;
  13. use PhpUnit9CompatTrait;
  14. }