2022-03-25 13:08:27 +00:00

12 lines
157 B
PHP

<?php
declare(strict_types=1);
namespace PHPUnit\Framework;
if (! class_exists('PHPUnit\Framework\TestCase')) {
abstract class TestCase
{
}
}