phpunit ve autoloader [kapalı]

0 Cevap php

Ben PHPUnit ile bu şekilde autoloader kullanmaya çalışıyorum:

  • phpunit.xml ben koymak bootstrap="bootstrap.php"
  • bootstrap.php ben koymak

    define( 'TESTING', true );
    putenv( 'APPLICATION_ENV=testing' );
    
    
    function __autoload($className) {    
        include_once __autoloadFilename($className);
    }
    
    
    function __autoloadFilename($className) {
        return str_replace('_','/',$className).".php";
    }
    

Phpunit komutu çalıştırmak için çalışırken ben hatayı alıyorum:

Generating code coverage report, this may take a moment.
Fatal error: Method PEAR_Autoloader::__call() must take exactly 2 arguments in /usr/share/php/PEAR/Autoloader.php on line 211

Herhangi bir yardım için teşekkür ederiz.

0 Cevap