我当前的PHP版本:7.1.28
塞巴斯蒂安·伯格曼(Sebastian Bergmann)和贡献者的我的PHPUnit 7.5.9。
随PHP Archive(PHAR)一起安装的PHPUnit
➜wget -O phpunit https://phar.phpunit.de/phpunit-7.phar
➜chmod + x phpunit
➜./phpunit --version
但是用PHAR安装PHPUnit之后,它不会生成“ src / autoload.php”,而只会生成文件phpunit
但是如果我在终端中运行./phpunit --version,则会显示Sebastian Bergmann和贡献者的PHPUnit 7.5.9。
我在https://github.com/bigmlcom/bigml-php中下载了zip并将其解压缩然后运行bigml-php-master / tests / test_00_regressions.php,然后收到错误消息PHP致命错误:找不到类“ PHPUnit_Framework_TestCase”
有人可以帮我吗
答案 0 :(得分:0)
尽管测试类扩展了旧类名PHPUnit_Framework_TestCase
时,显然bigml-php's README并未指定应使用哪个版本的phpunit,尽管可能是5.x。
您仍然可以下载phpunit-5.7.27.phar。似乎正在工作:
./phpunit-5.7.27.phar test_00_regressions.php