PHPUnit 在Windows版本的Git-bash运行

即使添加php,phpunit.phar,phpunit.bat,到Windows的环境变量,依然无法在git-bash直接运行phpunit.

$ phpunit --verson //bash: phpunit: command not found

解决办法很简单,添加命令的别名即可,编辑 ~/.bashrc,把下面的内容加进去就好。

alias phpunit="php /c/Tools/php/phpunit.phar" // phpunit.phar的位置在C:\Tools\php\phpunit.phar

重新启动一次git-bash,运行phpunit

$ phpunit --version //PHPUnit 7.0.1 by Sebastian Bergmann and contributors.

你可能感兴趣的:(PHPUnit 在Windows版本的Git-bash运行)