In some applications we do not use Composer's autoloader but our own of which until now I thought of being PSR-compatible.
In that cases loading of TestCaseTrait fails because Testcase specifies use PHPUnit_Extensions_Database_TestCase_Trait; but the filename is Extensions/Database/TestCaseTrait.php and not Extensions/Database/TestCase/Trait.php as expected. What's the reason for this? Am I missing something?
In some applications we do not use Composer's autoloader but our own of which until now I thought of being PSR-compatible.
In that cases loading of TestCaseTrait fails because Testcase specifies
use PHPUnit_Extensions_Database_TestCase_Trait;
but the filename isExtensions/Database/TestCaseTrait.php
and notExtensions/Database/TestCase/Trait.php
as expected. What's the reason for this? Am I missing something?Kind regards, Etienne