2011-01-07 62 views
2

我在XAMPP已成功安裝PHPUnit的,現在我需要配置它,我需要借這個步驟從文檔:如何在Xampp中配置PhpUnit?

2. Prepare the phpunit script: 
    1. 
     Rename the phpunit.php script to phpunit. 
    2. 
     Replace the @[email protected] 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 @[email protected] string in it with the path to your PHP command-line interpreter (usually /usr/bin/php). 

我找不到在PEAR目錄phpunit.php。這個文件位於PhpUnit的Xampp安裝中的任何線索?任何線索?

最好的問候,


UPDATE1:

我必須通過PEAR安裝它。好吧,我會看看那個工作。

最好的問候,

+0

從您的其他問題,我想它的工作?或者你遇到了另一個問題? :) – edorian 2011-01-11 15:20:16

回答

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

我試圖讓所有必要/有用的命令摘要來安裝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 

好運, 陽光