phpunit 有默认位置吗?或者当我想使用它时,我是否必须继续在命令行中导出路径?
是否有存储 PHPUNIT 扩展的默认位置?
我正在使用 symfony2,每次我想使用 phpunit 时,我都必须在终端中运行它 export PATH=$PATH:/usr/local/zend/apache2/htdocs/symfony/app
这正常吗?或者有没有办法让它始终工作,即使我更新并将我的 symfony 文件夹重命名为其他内容。
有没有办法让它始终有效?
我正在使用 zend server ce 和雪豹 10.6+
Is there a default location to store the PHPUNIT extension?
I'm using symfony2 and each time I want to use phpunit I have to run this in terminal export PATH=$PATH:/usr/local/zend/apache2/htdocs/symfony/app
Is this normal? or is there a way to make it always work, even if I update and rename my symfony folder to something else.
Is there a way to make it always work?
I'm using zend server ce and snow leopard 10.6+
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当我使用 PEAR 安装程序安装 PHPUnit 时,它将
phpunit
放入已在我的路径上的/usr/bin
中。这样我就可以在当前目录中的任何地方输入phpunit
来运行。Ubuntu 对我来说
pear install phpunit/PHPUnit
您是否正在尝试运行它的测试或您自己的使用 Symphony 的测试?
When I installed PHPUnit using the PEAR installer, it put
phpunit
in/usr/bin
which was already on my path. This way I could typephpunit
anywhere to run in the current directory.Ubuntu for me
pear install phpunit/PHPUnit
Are you trying to run its tests or your own tests that use Symphony?