I've have this error on executing tests
PHP Fatal error: Class 'PHPUnit\Framework\TestCase' not found in /vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Test/KernelTestCase.php on line 24
I can solve with this change
use PHPUnit\Framework\TestCase;
...
abstract class KernelTestCase extends TestCase
by
abstract class KernelTestCase extends \PHPUnit_Framework_TestCase
Is a bug or I'm miss some configuration on the version 3.3.8 of Symfony?
Thanks
P.S. differrent of Why, Fatal error: Class 'PHPUnit_Framework_TestCase' not found in ...? the error is not Fatal error: Class 'PHPUnit_Framework_TestCase' not found in ...