【发布时间】:2020-07-19 00:31:21
【问题描述】:
当我尝试从项目的测试文件夹中运行 phpunit . 时出现以下错误:
PHP Fatal error: Call to undefined method PHP_CodeCoverage_Filter::getInstance() in /usr/share/php/PHPUnit/Framework.php on line 46
我通过这些命令安装了 PHPUnit:
sudo pear channel-discover pear.symfony-project.com
sudo pear channel-discover components.ez.no
sudo pear install --alldeps phpunit/PHPUnit
因为其他方法似乎都不起作用,包括apt-get。
我认为 CodeCoverage 在某个时间点改变了他们的单例模式,因此删除了getInstance,但我不知道如何解决这个错误。如何降级 CodeCoverage 或升级 PHPUnit?
我尝试通过以下命令手动安装所有内容的最新版本:
sudo apt-get install git
mkdir phpunit && cd phpunit
git clone git://github.com/sebastianbergmann/phpunit.git
git clone git://github.com/sebastianbergmann/dbunit.git
git clone git://github.com/sebastianbergmann/php-file-iterator.git
git clone git://github.com/sebastianbergmann/php-text-template.git
git clone git://github.com/sebastianbergmann/php-code-coverage.git
git clone git://github.com/sebastianbergmann/php-token-stream.git
git clone git://github.com/sebastianbergmann/php-timer.git
git clone git://github.com/sebastianbergmann/phpunit-mock-objects.git
git clone git://github.com/sebastianbergmann/phpunit-selenium.git
git clone git://github.com/sebastianbergmann/phpunit-story.git
git clone git://github.com/sebastianbergmann/php-invoker.git
sudo cp -r dbunit/PHPUnit /usr/share/php/
sudo cp -r php-code-coverage/PHP /usr/share/php/
sudo cp -r php-file-iterator/File /usr/share/php/
sudo cp -r php-invoker/PHP /usr/share/php/
sudo cp -r php-text-template/Text /usr/share/php/
sudo cp -r php-timer/PHP /usr/share/php/
sudo cp -r php-token-stream/PHP /usr/share/php/
sudo cp -r phpunit/PHPUnit /usr/share/php/
sudo cp -r phpunit-mock-objects/PHPUnit /usr/share/php/
sudo cp -r phpunit-selenium/PHPUnit /usr/share/php/
sudo cp -r phpunit-story/PHPUnit /usr/share/php/
sudo cp -r phpunit/phpunit.php /usr/share/php/
但这没有任何帮助。现在我到处都是一堆垃圾:\
版本信息:
PEAR Version: 1.9.4
PHP Version: 5.3.6-13ubuntu3.3
Zend Engine Version: 2.3.0
PHPUnit 3.6.9 by Sebastian Bergmann.
Installed packages, channel pear.phpunit.de:
============================================
Package Version State
File_Iterator 1.3.1 stable
PHPUnit 3.6.9 stable
PHPUnit_MockObject 1.1.1 stable
PHP_CodeCoverage 1.1.1 stable
PHP_Invoker 1.1.0 stable
PHP_Timer 1.0.2 stable
PHP_TokenStream 1.1.2 stable
Text_Template 1.1.1 stable
【问题讨论】:
-
我无法让 phpUnit 在 Ubuntu 11.10 上为我工作。
-
我有同样的问题,我已经用 50 分赏金 询问了它:stackoverflow.com/questions/8949963/…
-
公开作为 PEAR 的对手,以及 PHPUnit 在当前状态下的发布方式。
-
@MikePurcell:嗯,我们没有太多的单元测试替代方案吗?那个容易安装和相对容易使用?这个项目到目前为止只有 2 个单元测试......所以我们仍然可以进行切换!
-
@Mark:好的,已经完成了文章的 v1.0,看看它,让我知道它是否适合你。祝你好运! melikedev.com/2012/01/25/php-phpunit-use-phpunit-without-pear
标签: php unit-testing phpunit ubuntu-11.10