如何在Xampp中配置PhpUnit?

时间:2011-01-07 11:54:52

标签: php installation phpunit xampp

我已经在Xampp中成功安装了PhpUnit,现在我需要对其进行配置,我需要从文档中采取以下步骤:

2. Prepare the phpunit script:
   1.
      Rename the phpunit.php script to phpunit.
   2.
      Replace the @php_bin@ string in it with the path to your PHP command-line interpreter (usually /usr/bin/php).
   3.
      Copy it to a directory that is in your path and make it executable (chmod +x phpunit).


3. Prepare the PHPUnit/Util/PHP.php script:
   1.
      Replace the @php_bin@ string in it with the path to your PHP command-line interpreter (usually /usr/bin/php).

我在PEAR目录中找不到phpunit.php。关于PhpUnit的Xampp安装中此文件的位置的任何线索?有线索吗?

最诚挚的问候,


Update1:​​

我已经通过PEAR安装了它。好的,我会看看是否有效。

最诚挚的问候,

2 个答案:

答案 0 :(得分:1)

你是如何安装它的?如果您使用Xampp附带的pear安装程序,它应该可以正常工作。

/opt/lampp/bin/pear channel-discover pear.phpunit.de
/opt/lampp/bin/pear install phpunit/PHPUnit

然后可执行文件应该驻留在/ opt / lampp / bin / phpunit。

如果你以另一种方式安装它(处理文件?,sry我没有在xampp文档中找到其他提示)那么只需指向我,我就会编辑答案

答案 1 :(得分:1)

我尝试对所有必要/有用的命令进行摘要以安装phpunit。我希望这仍然可以帮助一些偶然发现这一点的人。

请注意,最好以以管理员身份运行所有命令。

php go-pear.phar
pear clear-cache 
pear update-channels
pear upgrade --alldeps -f 
pear channel-discover pear.phpunit.de
pear channel-discover pear.symfony-project.com
pear channel-discover components.ez.no
pear config-set preferred_state beta
pear install --onlyreqdeps phpunit/PHPUnit
祝你好运, 晴天