rector/build/target-repository/stubs-rector/PHPUnit/Framework/TestCase.php
Abdul Malik Ikhsan 8f86f525f7
Fix stub PHPUnit\Framework\TestCase (#1954)
* Fix stub PHPUnit\Framework\TestCase

* final touch: clean up

* final touch: clean up

* load after bootstrap loaded

* move to target-repository

* final touch: remove stubs-rector on remote-repository first when exists
2022-03-22 21:32:53 +07:00

14 lines
156 B
PHP

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