2


我正在关注“入门”教程,但我被困在单元测试部分。我使用 git 打开 Git Bash 命令提示符并输入以下命令来安装 phpunit:

cd C:/wamp/bin/php/php5.4.3
git clone git://github.com/sebastianbergmann/phpunit.git

我在目录中看到文件在那里。C:\wamp\bin\php\php5.4.3在我的 Path 环境变量中。我按照教程的要求创建了目录和文件。当我打开 Git Bash 命令提示符并输入:

cd C:/wamp/www/ZendSkeletonApplication/module/Application\test
phpunit

我得到错误sh.exe": phpunit: command not found

我究竟做错了什么?

更新:我在 php.ini 中添加C:\wamp\bin\php\php5.4.3\phpunit了我的 include_path,但我仍然遇到同样的错误。

4

1 回答 1

0

你试图在 git shell 中运行这些东西——这是错误的。除非你明白发生了什么,否则只能在 git shell 中运行 git stuff。按Windows Key+R并输入cmd。在那里再试一次。

于 2012-12-22T22:23:36.400 回答