Windows
在 Windows 機器上執行 phpunit 的問題
您好我正在嘗試讓 phpunit 在我的 Windows 機器上工作。我安裝了 Zend Server CE 並安裝了 pear。但是當我這樣做時:
phpunit --configuration phpunit.xml
我得到錯誤:
phpunit is not recognized as an internal or external command, operable program or batch file.
有任何想法嗎?
phpunit 在你的 PATH 中嗎?
如果沒有,您可以將其設置為:
Control Panel > System > Advanced System Settings > Advanced (tab) > Environment Variables
將 phpunit.exe 所在的目錄附加到 Path 變數中。確保不要省略 ; 在你進入路徑之前。即,您將添加如下內容:
;c:\Program Files\App\
希望這可以幫助。